AngleSharp by AngleSharp

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

.NET API 888,320 bytes

 IShadowRoot

The ShadowRoot interface represents the shadow root.
using AngleSharp.Attributes; using System.Runtime.CompilerServices; namespace AngleSharp.Dom { [System.Runtime.CompilerServices.NullableContext(1)] [DomName("ShadowRoot")] public interface IShadowRoot : IDocumentFragment, INode, IEventTarget, IMarkupFormattable, IParentNode, INonElementParentNode { [System.Runtime.CompilerServices.Nullable(2)] [DomName("activeElement")] IElement ActiveElement { [System.Runtime.CompilerServices.NullableContext(2)] get; } [DomName("host")] IElement Host { get; } [DomName("innerHTML")] string InnerHtml { get; set; } ShadowRootMode Mode { get; } [DomName("styleSheets")] IStyleSheetList StyleSheets { get; } } }