AngleSharp by AngleSharp

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

.NET API 955,904 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; } } }