Class PlainLiteralToken
Token which represents Plain (Unquoted) Literals.
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: VDS.RDF.Parsing.Tokens
Assembly: dotNetRDF.dll
Syntax
public class PlainLiteralToken : BaseToken, IToken
Constructors
| Improve this Doc View SourcePlainLiteralToken(String, Int32, Int32, Int32)
Creates a new Plain Literal Token.
Declaration
public PlainLiteralToken(string value, int line, int start, int end)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | Literal Value. |
System.Int32 | line | Line the Literal occurs on. |
System.Int32 | start | Column the Literal starts at. |
System.Int32 | end | Column the Literal ends at. |