C# Class ComponentFactory.Quicksilver.Binding.Token

Token represents a single lexical item.
Afficher le fichier Open project: ComponentFactory/Quicksilver Class Usage Examples

Méthodes publiques

Méthode Description
Token ( TokenType type, int index ) : System

Initialize a new instance of the Token class.

Token ( TokenType type, int index, TypeCode typeCode, object value ) : System

Initialize a new instance of the Token class.

Method Details

Token() public méthode

Initialize a new instance of the Token class.
public Token ( TokenType type, int index ) : System
type TokenType Type of value contained by the token.
index int Character position for start of token.
Résultat System

Token() public méthode

Initialize a new instance of the Token class.
public Token ( TokenType type, int index, TypeCode typeCode, object value ) : System
type TokenType Type of value contained by the token.
index int Character position for start of token.
typeCode TypeCode Type of the value provided.
value object Token value.
Résultat System