IHtmlParamElement
public interface IHtmlParamElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
Represents the param HTML element.
using AngleSharp.Attributes;
using AngleSharp.Dom.Css;
namespace AngleSharp.Dom.Html
{
[DomName("HTMLParamElement")]
public interface IHtmlParamElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
{
[DomName("name")]
string Name { get; set; }
[DomName("value")]
string Value { get; set; }
}
}