Click or drag to resize

ReadOnlyConnectorUpdateGraph Method (Uri, IEnumerableTriple, IEnumerableTriple)

Throws an exception since you cannot update a Graph using a read-only connection.

Namespace:  VDS.RDF.Storage
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public void UpdateGraph(
	Uri graphUri,
	IEnumerable<Triple> additions,
	IEnumerable<Triple> removals
)

Parameters

graphUri
Type: SystemUri
URI of the Graph.
additions
Type: System.Collections.GenericIEnumerableTriple
Triples to be added.
removals
Type: System.Collections.GenericIEnumerableTriple
Triples to be removed.

Implements

IStorageProviderUpdateGraph(Uri, IEnumerableTriple, IEnumerableTriple)
Exceptions
ExceptionCondition
RdfStorageExceptionThrown since you cannot update a Graph using a read-only connection.
See Also