Interface IHtmlMetaElement
- Namespace
- AngleSharp.Html.Dom
- Assembly
- AngleSharp.dll
Represents the meta HTML element.
[DomName("HTMLMetaElement")]
public interface IHtmlMetaElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
- Inherited Members
- Extension Methods
Properties
Charset
Gets or sets the associated charset.
string? Charset { get; set; }
Property Value
Content
Gets or sets the value of the content attribute of the meta element.
[DomName("content")]
string? Content { get; set; }
Property Value
HttpEquivalent
Gets or sets the value of the equivalent in a meta element, which is effective if the server doesn't send a corresponding real header.
[DomName("httpEquiv")]
string? HttpEquivalent { get; set; }
Property Value
Name
Gets or sets the name of the meta element.
[DomName("name")]
string? Name { get; set; }