HTMLMetaElement
sealed class HTMLMetaElement : HTMLElement, IHtmlMetaElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
Represents the HTML meta element.
using AngleSharp.DOM.Css;
namespace AngleSharp.DOM.Html
{
internal sealed class HTMLMetaElement : HTMLElement, IHtmlMetaElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
{
public string Content {
get {
return GetAttribute(AttributeNames.Content);
}
set {
SetAttribute(AttributeNames.Content, value);
}
}
public string HttpEquivalent {
get {
return GetAttribute(AttributeNames.HttpEquiv);
}
set {
SetAttribute(AttributeNames.HttpEquiv, value);
}
}
public string Scheme {
get {
return GetAttribute(AttributeNames.Scheme);
}
set {
SetAttribute(AttributeNames.Scheme, value);
}
}
public string Name {
get {
return GetAttribute(AttributeNames.Name);
}
set {
SetAttribute(AttributeNames.Name, value);
}
}
public HTMLMetaElement()
: base(Tags.Meta, NodeFlags.SelfClosing | NodeFlags.Special)
{
}
}
}