Class LongLiteralToken
Token which represents Long Literals (allows multi-line values).
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: VDS.RDF.Parsing.Tokens
Assembly: dotNetRdf.dll
Syntax
public class LongLiteralToken : BaseToken, IToken
Constructors
| Improve this Doc View SourceLongLiteralToken(string, int, int, int, int)
Creates a new Long Literal Token.
Declaration
public LongLiteralToken(string value, int startLine, int endLine, int start, int end)
Parameters
Type | Name | Description |
---|---|---|
string | value | Literal Value including the Triple Quote deliminators. |
int | startLine | Line the Long Literal starts on. |
int | endLine | Line the Long Literal ends on. |
int | start | Column the Literal starts at. |
int | end | Column the Literal ends at. |