AngleSharp by AngleSharp

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

.NET API 1,230,848 bytes

 IHtmlDialogElement

Repesents the dialog HTML element.
using AngleSharp.Attributes; using AngleSharp.Dom.Css; using AngleSharp.Dom.Events; namespace AngleSharp.Dom.Html { [DomName("HTMLDialogElement")] public interface IHtmlDialogElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IGlobalEventHandlers { [DomName("open")] bool Open { get; set; } [DomName("returnValue")] string ReturnValue { get; set; } [DomName("show")] void Show(IElement anchor = null); [DomName("showModal")] void ShowModal(IElement anchor = null); [DomName("close")] void Close(string returnValue = null); } }