AngleSharp by Florian Rappl

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

.NET API 1,189,376 bytes

 IHtmlObjectElement

Represents the object HTML element.
using AngleSharp.Attributes; using AngleSharp.Dom.Css; namespace AngleSharp.Dom.Html { [DomName("HTMLObjectElement")] public interface IHtmlObjectElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation { [DomName("data")] string Source { get; set; } [DomName("type")] string Type { get; set; } [DomName("typeMustMatch")] bool TypeMustMatch { get; set; } [DomName("name")] string Name { get; set; } [DomName("useMap")] string UseMap { get; set; } [DomName("form")] IHtmlFormElement Form { get; } [DomName("width")] int DisplayWidth { get; set; } [DomName("height")] int DisplayHeight { get; set; } [DomName("contentDocument")] IDocument ContentDocument { get; } [DomName("contentWindow")] IWindow ContentWindow { get; } } }