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
| Edit this page View SourceEndLine
Gives the Line at which the Token ends.
Declaration
int EndLine { get; }
Property Value
Type | Description |
---|---|
int |
EndPosition
Gives the Position within the End Line that the Token ends.
Declaration
int EndPosition { get; }
Property Value
Type | Description |
---|---|
int |
Length
Gives the Length of the Token.
Declaration
int Length { get; }
Property Value
Type | Description |
---|---|
int |
StartLine
Gives the Line at which the Token starts.
Declaration
int StartLine { get; }
Property Value
Type | Description |
---|---|
int |
StartPosition
Gives the Position within the Start Line that the Token starts.
Declaration
int StartPosition { get; }
Property Value
Type | Description |
---|---|
int |
TokenType
Gives some Integer representing the Token Type as understood by a specific Parser implementation.
Declaration
int TokenType { get; }
Property Value
Type | Description |
---|---|
int |
Value
Gives the Value of the Token.
Declaration
string Value { get; }
Property Value
Type | Description |
---|---|
string |