HTMLMetaElement
Represents the HTML meta element.
namespace AngleSharp.DOM.Html
{
[DOM("HTMLMetaElement")]
public sealed class HTMLMetaElement : HTMLElement
{
internal const string Tag = "meta";
[DOM("content")]
public string Content {
get {
return GetAttribute("content");
}
set {
SetAttribute("content", value);
}
}
[DOM("httpEquiv")]
public string HttpEquiv {
get {
return GetAttribute("http-equiv");
}
set {
SetAttribute("http-equiv", value);
}
}
[DOM("scheme")]
public string Scheme {
get {
return GetAttribute("scheme");
}
set {
SetAttribute("scheme", value);
}
}
[DOM("name")]
public string Name {
get {
return GetAttribute("name");
}
set {
SetAttribute("name", value);
}
}
protected internal override bool IsSpecial => true;
internal HTMLMetaElement()
{
_name = "meta";
}
}
}