Interface ITokeniser
Interface for Tokenisers.
Namespace: VDS.RDF.Parsing.Tokens
Assembly: dotNetRdf.dll
Syntax
public interface ITokeniser
Remarks
A Tokeniser is a class that takes an input stream and produces textual tokens from it for use in token based parsers.
Methods
| Edit this page View SourceGetNextToken()
Causes the Tokeniser to attempt to retrieve the next Token.
Declaration
IToken GetNextToken()
Returns
| Type | Description |
|---|---|
| IToken |
Exceptions
| Type | Condition |
|---|---|
| RdfParseException | Thrown if a valid Token cannot be parsed. |
| IOException | Thrown if there is a problem reading the Input Stream. |