AngleSharp by Florian Rappl

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

.NET API 1,113,600 bytes

 HtmlEmbedElement

Represents the embed element.
using AngleSharp.Dom.Css; using AngleSharp.Html; namespace AngleSharp.Dom.Html { internal sealed class HtmlEmbedElement : HtmlElement, IHtmlEmbedElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle { public string Source { get { return GetOwnAttribute(AttributeNames.Src); } set { SetOwnAttribute(AttributeNames.Src, value); } } public string Type { get { return GetOwnAttribute(AttributeNames.Type); } set { SetOwnAttribute(AttributeNames.Type, value); } } public string DisplayWidth { get { return GetOwnAttribute(AttributeNames.Width); } set { SetOwnAttribute(AttributeNames.Width, value); } } public string DisplayHeight { get { return GetOwnAttribute(AttributeNames.Height); } set { SetOwnAttribute(AttributeNames.Height, value); } } public HtmlEmbedElement(Document owner, string prefix = null) : base(owner, Tags.Embed, prefix, NodeFlags.SelfClosing | NodeFlags.Special) { } } }