Interface IToken
Interface for defining Token classes to be used in Parsing RDF.
Namespace: VDS.RDF.Parsing.Tokens
Assembly: dotNetRDF.dll
Syntax
public interface IToken
Properties
| Improve this Doc View SourceEndLine
Gives the Line at which the Token ends.
Declaration
int EndLine { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
EndPosition
Gives the Position within the End Line that the Token ends.
Declaration
int EndPosition { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Length
Gives the Length of the Token.
Declaration
int Length { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
StartLine
Gives the Line at which the Token starts.
Declaration
int StartLine { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
StartPosition
Gives the Position within the Start Line that the Token starts.
Declaration
int StartPosition { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
TokenType
Gives some Integer representing the Token Type as understood by a specific Parser implementation.
Declaration
int TokenType { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Value
Gives the Value of the Token.
Declaration
string Value { get; }
Property Value
Type | Description |
---|---|
System.String |