AngleSharp by Florian Rappl

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

.NET API 1,189,376 bytes

 IHtmlInlineFrameElement

Represents the iframe HTML element.
using AngleSharp.Attributes; using AngleSharp.Dom.Css; namespace AngleSharp.Dom.Html { [DomName("HTMLIFrameElement")] internal interface IHtmlInlineFrameElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle { [DomName("src")] string Source { get; set; } [DomName("srcdoc")] string ContentHtml { get; set; } [DomName("name")] string Name { get; set; } [DomName("sandbox")] ISettableTokenList Sandbox { get; } [DomName("seamless")] bool IsSeamless { get; set; } [DomName("allowFullscreen")] bool IsFullscreenAllowed { get; set; } [DomName("width")] int DisplayWidth { get; set; } [DomName("height")] int DisplayHeight { get; set; } [DomName("contentDocument")] IDocument ContentDocument { get; } [DomName("contentWindow")] IWindow ContentWindow { get; } } }