Click or drag to resize

ISparqlDatasetItem Property

Gets the Graph with the given URI from the Dataset.

Namespace:  VDS.RDF.Query.Datasets
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
IGraph this[
	Uri graphUri
] { get; }

Parameters

graphUri
Type: SystemUri
Graph URI.

Return Value

Type: IGraph
Remarks

This property need only return a read-only view of the Graph, code which wishes to modify Graphs should use the GetModifiableGraph() method to guarantee a Graph they can modify and will be persisted to the underlying storage.

See Also