AngleSharp by AngleSharp

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

.NET API 1,232,384 bytes

 HtmlStyleElement

Represents the HTML style element.
using AngleSharp.Dom.Css; using AngleSharp.Extensions; using AngleSharp.Html; using AngleSharp.Network; using AngleSharp.Services.Styling; namespace AngleSharp.Dom.Html { internal sealed class HtmlStyleElement : HtmlElement, IHtmlStyleElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, ILinkStyle { private IStyleSheet _sheet; public bool IsScoped { get { return this.HasOwnAttribute(AttributeNames.Scoped); } set { this.SetOwnAttribute(AttributeNames.Scoped, value ? string.Empty : null); } } public IStyleSheet Sheet => _sheet ?? (_sheet = CreateSheet()); public bool IsDisabled { get { return this.GetOwnAttribute(AttributeNames.Disabled).ToBoolean(false); } set { this.SetOwnAttribute(AttributeNames.Disabled, value ? string.Empty : null); if (_sheet != null) _sheet.IsDisabled = value; } } public string Media { get { return this.GetOwnAttribute(AttributeNames.Media); } set { this.SetOwnAttribute(AttributeNames.Media, value); } } public string Type { get { return this.GetOwnAttribute(AttributeNames.Type); } set { this.SetOwnAttribute(AttributeNames.Type, value); } } public HtmlStyleElement(Document owner, string prefix = null) : base(owner, TagNames.Style, prefix, NodeFlags.Special | NodeFlags.LiteralText) { } internal override void SetupElement() { base.SetupElement(); string ownAttribute = this.GetOwnAttribute(AttributeNames.Media); RegisterAttributeObserver(AttributeNames.Media, UpdateMedia); if (ownAttribute != null) UpdateMedia(ownAttribute); } internal override void NodeIsInserted(Node newNode) { base.NodeIsInserted(newNode); UpdateSheet(); } internal override void NodeIsRemoved(Node removedNode, Node oldPreviousSibling) { base.NodeIsRemoved(removedNode, oldPreviousSibling); UpdateSheet(); } private void UpdateMedia(string value) { if (_sheet != null) _sheet.Media.MediaText = value; } private void UpdateSheet() { if (_sheet != null) _sheet = CreateSheet(); } private IStyleSheet CreateSheet() { IConfiguration options = base.Owner.Options; string type = Type ?? MimeTypeNames.Css; IStyleEngine styleEngine = options.GetStyleEngine(type); if (styleEngine != null) { StyleOptions styleOptions = new StyleOptions(); styleOptions.Element = this; styleOptions.IsDisabled = IsDisabled; styleOptions.IsAlternate = false; styleOptions.Configuration = options; StyleOptions options2 = styleOptions; return styleEngine.ParseStylesheet(TextContent, options2); } return null; } } }