AngleSharp by Florian Rappl

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

.NET API 1,171,968 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, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle { public string Value { get { return GetAttribute(AttributeNames.Value); } set { SetAttribute(AttributeNames.Value, value); } } public string Name { get { return GetAttribute(AttributeNames.Name); } set { SetAttribute(AttributeNames.Name, value); } } public HtmlParamElement(Document owner) : base(owner, Tags.Param, NodeFlags.SelfClosing | NodeFlags.Special) { } } }