Class BlankNodeCollectionToken
Token which represents Blank Node Collections.
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 BlankNodeCollectionToken : BaseToken, IToken
Constructors
| Improve this Doc View SourceBlankNodeCollectionToken(Stack<IToken>, Int32, Int32, Int32, Int32)
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<IToken> | contents | Contents of the Blank Node Collection. |
System.Int32 | startline | Line the Collection starts on. |
System.Int32 | endline | Line the Collection ends on. |
System.Int32 | start | Column the Collection starts at. |
System.Int32 | 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<IToken> |