AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.3.1-beta.490" />

.NET API 962,560 bytes

 HtmlAreaElement

Represents the area element.
using AngleSharp.Dom; using AngleSharp.Dom.Events; using System.Runtime.CompilerServices; namespace AngleSharp.Html.Dom { internal sealed class HtmlAreaElement : HtmlUrlBaseElement, IHtmlAreaElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IUrlUtilities { [System.Runtime.CompilerServices.Nullable(2)] public string AlternativeText { [System.Runtime.CompilerServices.NullableContext(2)] get { return this.GetOwnAttribute(AttributeNames.Alt); } [System.Runtime.CompilerServices.NullableContext(2)] set { this.SetOwnAttribute(AttributeNames.Alt, value, false); } } [System.Runtime.CompilerServices.Nullable(2)] public string Coordinates { [System.Runtime.CompilerServices.NullableContext(2)] get { return this.GetOwnAttribute(AttributeNames.Coords); } [System.Runtime.CompilerServices.NullableContext(2)] set { this.SetOwnAttribute(AttributeNames.Coords, value, false); } } [System.Runtime.CompilerServices.Nullable(2)] public string Shape { [System.Runtime.CompilerServices.NullableContext(2)] get { return this.GetOwnAttribute(AttributeNames.Shape); } [System.Runtime.CompilerServices.NullableContext(2)] set { this.SetOwnAttribute(AttributeNames.Shape, value, false); } } [System.Runtime.CompilerServices.NullableContext(1)] public HtmlAreaElement(Document owner, [System.Runtime.CompilerServices.Nullable(2)] string prefix = null) : base(owner, TagNames.Area, prefix, NodeFlags.SelfClosing | NodeFlags.Special) { } } }