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