Class BlankNodeCollectionToken
Token which represents Blank Node Collections.
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 BlankNodeCollectionToken : BaseToken, IToken
Constructors
| Improve this Doc View SourceBlankNodeCollectionToken(Stack<IToken>, int, int, int, int)
Creates a new Blank Node Collection Token.
Declaration
public BlankNodeCollectionToken(Stack<IToken> contents, int startline, int endline, int start, int end)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.Stack<T><IToken> | contents | Contents of the Blank Node Collection. |
int | startline | Line the Collection starts on. |
int | endline | Line the Collection ends on. |
int | start | Column the Collection starts at. |
int | end | Column the Collection ends at. |
Properties
| Improve this Doc View SourceCollection
The Tokens contained in the Blank Node Collection.
Declaration
public Stack<IToken> Collection { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Stack<T><IToken> |