Show / Hide Table of Contents

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 Source

EndLine

Gives the Line at which the Token ends.
Declaration
int EndLine { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

EndPosition

Gives the Position within the End Line that the Token ends.
Declaration
int EndPosition { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Length

Gives the Length of the Token.
Declaration
int Length { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

StartLine

Gives the Line at which the Token starts.
Declaration
int StartLine { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

StartPosition

Gives the Position within the Start Line that the Token starts.
Declaration
int StartPosition { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

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
| Improve this Doc View Source

Value

Gives the Value of the Token.
Declaration
string Value { get; }
Property Value
Type Description
System.String

Extension Methods

Extensions.AsEnumerable<T>(T)
  • Improve this Doc
  • View Source
In This Article
  • Properties
    • EndLine
    • EndPosition
    • Length
    • StartLine
    • StartPosition
    • TokenType
    • Value
  • Extension Methods
Back to top Generated by DocFX