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