HTMLBaseElement
Represents the HTML base element.
namespace AngleSharp.DOM.Html
{
[DOM("HTMLBaseElement")]
public sealed class HTMLBaseElement : HTMLElement
{
[DOM("href")]
public string Href {
get {
return GetAttribute(AttributeNames.Href);
}
set {
SetAttribute(AttributeNames.Href, value);
}
}
[DOM("target")]
public string Target {
get {
return GetAttribute(AttributeNames.Target);
}
set {
SetAttribute(AttributeNames.Target, value);
}
}
protected internal override bool IsSpecial => true;
internal HTMLBaseElement()
{
_name = "base";
}
}
}