Click or drag to resize

ISparqlDatasetGetModifiableGraph Method

Gets the Graph with the given URI from the Dataset.

Namespace:  VDS.RDF.Query.Datasets
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
IGraph GetModifiableGraph(
	Uri graphUri
)

Parameters

graphUri
Type: SystemUri
Graph URI.

Return Value

Type: IGraph

[Missing <returns> documentation for "M:VDS.RDF.Query.Datasets.ISparqlDataset.GetModifiableGraph(System.Uri)"]

Exceptions
ExceptionCondition
NotSupportedExceptionMay be thrown if the Dataset is immutable i.e. Updates not supported.
NotSupportedExceptionMay be thrown if the Dataset is immutable.
Remarks

Graphs returned from this method must be modifiable and the Dataset must guarantee that when it is Flushed or Disposed of that any changes to the Graph are persisted.

See Also