AngleSharp by AngleSharp

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

 CssCombinator

abstract class CssCombinator
An enumeration with possible CSS combinator values.
public static readonly CssCombinator AdjacentSibling

The adjacent sibling combinator +.

public static readonly CssCombinator Child

The child operator (>).

public static readonly CssCombinator Column

The column combinator ||.

public static readonly CssCombinator Deep

The deep combinator (>>>).

public static readonly CssCombinator Descendent

The descendent operator (space, or alternatively >>).

public static readonly CssCombinator Namespace

The namespace combinator |.

public static readonly CssCombinator Sibling

The sibling combinator ~.

public string Delimiter { get; protected set; }

Gets the delimiter that represents the combinator.

public Func<IElement, IEnumerable<IElement>> Transform { get; protected set; }

Gets the transformation function for the combinator.

protected CssCombinator()

protected static IEnumerable<IElement> Single(IElement element)

public virtual ISelector Change(ISelector selector)

Changes the selector on the LHS according to some special rules.