AngleSharp by Florian Rappl

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

.NET API 886,784 bytes

 HTMLMetaElement

Represents the HTML meta element.
using AngleSharp.DOM.Css; namespace AngleSharp.DOM.Html { internal sealed class HTMLMetaElement : HTMLElement, IHtmlMetaElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle { public string Content { get { return GetAttribute(AttributeNames.Content); } set { SetAttribute(AttributeNames.Content, value); } } public string HttpEquivalent { get { return GetAttribute(AttributeNames.HttpEquiv); } set { SetAttribute(AttributeNames.HttpEquiv, value); } } public string Scheme { get { return GetAttribute(AttributeNames.Scheme); } set { SetAttribute(AttributeNames.Scheme, value); } } public string Name { get { return GetAttribute(AttributeNames.Name); } set { SetAttribute(AttributeNames.Name, value); } } public HTMLMetaElement() : base(Tags.Meta, NodeFlags.SelfClosing | NodeFlags.Special) { } } }