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
| Improve this Doc 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. |
System.IO.IOException | Thrown if there is a problem reading the Input Stream. |