Class OutputRdfCollection
Class used to store Collections as part of the writing process for Compressing Writers.
Inherited Members
Namespace: VDS.RDF.Writing
Assembly: dotNetRdf.dll
Syntax
public class OutputRdfCollection
Constructors
| Edit this page View SourceOutputRdfCollection(bool)
Creates a new Instance of a Collection.
Declaration
public OutputRdfCollection(bool explicitCollection)
Parameters
Type | Name | Description |
---|---|---|
bool | explicitCollection | Whether the collection is explicit (specified using square bracket notation) or implicit (specified using normal parentheses). |
Properties
| Edit this page View SourceHasBeenWritten
Gets/Sets whether the Collection has been written.
Declaration
public bool HasBeenWritten { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsExplicit
Gets whether this is an Explicit collection (specified using square bracket notation).
Declaration
public bool IsExplicit { get; }
Property Value
Type | Description |
---|---|
bool |
Triples
Gets the Triples that make up the Collection.
Declaration
public List<Triple> Triples { get; }
Property Value
Type | Description |
---|---|
List<Triple> |