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