CombinatorSymbols
The collection of known CSS selector combinator symbols.
using System;
using System.Runtime.CompilerServices;
namespace AngleSharp.Css
{
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
public static class CombinatorSymbols
{
public static readonly string Exactly = "=";
public static readonly string Unlike = "!=";
public static readonly string InList = "~=";
public static readonly string InToken = "|=";
public static readonly string Begins = "^=";
public static readonly string Ends = "$=";
public static readonly string InText = "*=";
public static readonly string Column = "||";
public static readonly string Pipe = "|";
public static readonly string Adjacent = "+";
[Obsolete("Use CombinatorSymbols.Descendant")]
public static readonly string Descendent = " ";
public static readonly string Descendant = " ";
public static readonly string Deep = ">>>";
public static readonly string Child = ">";
public static readonly string Sibling = "~";
}
}