C# Class ComponentFactory.Quicksilver.Binding.Token

Token represents a single lexical item.
Mostra file Open project: ComponentFactory/Quicksilver Class Usage Examples

Public Methods

Method 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 method

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.
return System

Token() public method

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.
return System