AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.16.1-alpha-112" />

.NET API 879,104 bytes

 IPseudoElement

The PseudoElement interface is used for representing CSS pseudo-elements.
using AngleSharp.Attributes; using System.Runtime.CompilerServices; namespace AngleSharp.Dom { [DomName("PseudoElement")] [DomNoInterfaceObject] public interface IPseudoElement : IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode { [System.Runtime.CompilerServices.Nullable(1)] string PseudoName { [System.Runtime.CompilerServices.NullableContext(1)] get; } } }