AngleSharp by Florian Rappl

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

 CssToken

abstract class CssToken
The base class token for the CSS parser.
protected CssTokenType _type

public static CssColumnToken Column { get; }

Gets the column token.

public CssTokenType Type { get; }

Gets the type of the token.

protected CssToken()

public static CssDelimToken Delim(char c)

Creates a new CSS delimiter token.

public static CssNumberToken Number(string value)

Creates a new CSS number token.

public static CssRangeToken Range(string start, string end)

Creates a new CSS range token.

public abstract string ToValue()

Gets a string which represents the original value.