HTMLTitleElement
Represents the title element.
namespace AngleSharp.DOM.Html
{
public class HTMLTitleElement : HTMLRCDataElement
{
public const string Tag = "title";
public string Text {
get {
return TextContent;
}
set {
TextContent = value;
}
}
protected internal override bool IsSpecial => true;
public HTMLTitleElement()
{
base.NodeName = "title";
}
}
}