AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.8" />

.NET API 1,176,064 bytes

 HtmlParamElement

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) { } } }