HtmlParamElement
sealed class HtmlParamElement : HtmlElement, IHtmlParamElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
Represents a param element.
using AngleSharp.Dom.Css;
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlParamElement : HtmlElement, IHtmlParamElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
{
public string Value {
get {
return GetOwnAttribute(AttributeNames.Value);
}
set {
SetOwnAttribute(AttributeNames.Value, value);
}
}
public string Name {
get {
return GetOwnAttribute(AttributeNames.Name);
}
set {
SetOwnAttribute(AttributeNames.Name, value);
}
}
public HtmlParamElement(Document owner, string prefix = null)
: base(owner, Tags.Param, prefix, NodeFlags.SelfClosing | NodeFlags.Special)
{
}
}
}