AngleSharp by Florian Rappl

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

 CssToken

class CssToken
The base class token for the CSS parser.
public static readonly CssToken Comma

public static readonly CssToken Whitespace

public string Data { get; }

Gets the data of the token.

public TextPosition Position { get; }

Gets the position of the token.

public CssTokenType Type { get; }

Gets the type of the token.

public CssToken(CssTokenType type, char data, TextPosition position)

public CssToken(CssTokenType type, string data, TextPosition position)

public virtual string ToValue()

Gets a string which represents the original value.