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

| Edit this page View Source

EndLine

Gives the Line at which the Token ends.

Declaration
int EndLine { get; }
Property Value
Type Description
int
| Edit this page View Source

EndPosition

Gives the Position within the End Line that the Token ends.

Declaration
int EndPosition { get; }
Property Value
Type Description
int
| Edit this page View Source

Length

Gives the Length of the Token.

Declaration
int Length { get; }
Property Value
Type Description
int
| Edit this page View Source

StartLine

Gives the Line at which the Token starts.

Declaration
int StartLine { get; }
Property Value
Type Description
int
| Edit this page View Source

StartPosition

Gives the Position within the Start Line that the Token starts.

Declaration
int StartPosition { get; }
Property Value
Type Description
int
| Edit this page 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
int
| Edit this page View Source

Value

Gives the Value of the Token.

Declaration
string Value { get; }
Property Value
Type Description
string

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Edit this page
  • View Source
In this article
  • Properties
    • EndLine
    • EndPosition
    • Length
    • StartLine
    • StartPosition
    • TokenType
    • Value
  • Extension Methods
Back to top Generated by DocFX