AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.3.1-beta.491" />

.NET API 962,560 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; } } }