LiteralToken Constructor (String, Int32, Int32, Int32, Int32) |
Creates a new Literal Token.
Namespace:
VDS.RDF.Parsing.Tokens
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public LiteralToken(
string value,
int startLine,
int endLine,
int start,
int end
)
Public Sub New (
value As String,
startLine As Integer,
endLine As Integer,
start As Integer,
end As Integer
)
Parameters
- value
- Type: SystemString
Literal Value including the Quote deliminators. - startLine
- Type: SystemInt32
Line the Literal starts on. - endLine
- Type: SystemInt32
Line the Literal ends on. - start
- Type: SystemInt32
Column the Literal starts at. - end
- Type: SystemInt32
Column the Literal ends at.
Remarks
Most syntaxes use different deliminators for multiline literals and will usually use a
LongLiteralToken instead but some formats like CSV only use quotes for multiline literals and use no delimitors for single line literals.
See Also