AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.2.0-beta.439" />

.NET API 955,904 bytes

 IHtmlOutputElement

Represents the output HTML element.
using AngleSharp.Attributes; using AngleSharp.Dom; using AngleSharp.Dom.Events; using System.Runtime.CompilerServices; namespace AngleSharp.Html.Dom { [System.Runtime.CompilerServices.NullableContext(1)] [DomName("HTMLOutputElement")] public interface IHtmlOutputElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation { [DomName("htmlFor")] ISettableTokenList HtmlFor { get; } [DomName("defaultValue")] string DefaultValue { get; set; } [DomName("value")] string Value { get; set; } [DomName("labels")] INodeList Labels { get; } [DomName("type")] string Type { get; } [System.Runtime.CompilerServices.Nullable(2)] [DomName("form")] IHtmlFormElement Form { [System.Runtime.CompilerServices.NullableContext(2)] get; } [System.Runtime.CompilerServices.Nullable(2)] [DomName("name")] string Name { [System.Runtime.CompilerServices.NullableContext(2)] get; [System.Runtime.CompilerServices.NullableContext(2)] set; } } }