AngleSharp by AngleSharp

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

.NET API 1,230,336 bytes

 HtmlModElement

Represents the HTML modifier (ins / del) element.
using AngleSharp.Dom.Css; using AngleSharp.Dom.Events; using AngleSharp.Extensions; using AngleSharp.Html; namespace AngleSharp.Dom.Html { internal sealed class HtmlModElement : HtmlElement, IHtmlModElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IGlobalEventHandlers { public string Citation { get { return this.GetOwnAttribute(AttributeNames.Cite); } set { this.SetOwnAttribute(AttributeNames.Cite, value, false); } } public string DateTime { get { return this.GetOwnAttribute(AttributeNames.Datetime); } set { this.SetOwnAttribute(AttributeNames.Datetime, value, false); } } public HtmlModElement(Document owner, string name = null, string prefix = null) : base(owner, name ?? TagNames.Ins, prefix, NodeFlags.None) { } } }