Class RdfCanonicalizer.CanonicalizedRdfDataset
A canonicalized RDF dataset, as per https://www.w3.org/TR/rdf-canon/#dfn-canonicalized-dataset. It does not contain the input blank node identifier map, as n-quads inputs are not currently supported.
Inherited Members
Namespace: VDS.RDF
Assembly: dotNetRdf.dll
Syntax
public class RdfCanonicalizer.CanonicalizedRdfDataset
Remarks
For convenience, this also contains the serialized n-quads format, as well as the output dataset.
Constructors
| Edit this page View SourceCanonicalizedRdfDataset(ITripleStore, ITripleStore, IDictionary<string, string>)
A canonicalized RDF dataset, as per https://www.w3.org/TR/rdf-canon/#dfn-canonicalized-dataset. It does not contain the input blank node identifier map, as n-quads inputs are not currently supported.
Declaration
public CanonicalizedRdfDataset(ITripleStore inputDataset, ITripleStore outputDataset, IDictionary<string, string> issuedIdentifiersMap)
Parameters
Type | Name | Description |
---|---|---|
ITripleStore | inputDataset | |
ITripleStore | outputDataset | |
IDictionary<string, string> | issuedIdentifiersMap |
Remarks
For convenience, this also contains the serialized n-quads format, as well as the output dataset.
Fields
| Edit this page View SourceInputDataset
The input dataset.
Declaration
public readonly ITripleStore InputDataset
Field Value
Type | Description |
---|---|
ITripleStore |
IssuedIdentifiersMap
The mapping between original blank node identifiers and their canonical counterparts.
Declaration
public readonly IDictionary<string, string> IssuedIdentifiersMap
Field Value
Type | Description |
---|---|
IDictionary<string, string> |
OutputDataset
The canonicalized output dataset.
Declaration
public readonly ITripleStore OutputDataset
Field Value
Type | Description |
---|---|
ITripleStore |
SerializedNQuads
The dataset, serialized in canonical n-quads form.
Declaration
public readonly string SerializedNQuads
Field Value
Type | Description |
---|---|
string |