Click or drag to resize

ReadOnlyConnector.UpdateGraph Method (String, IEnumerable<Triple>, IEnumerable<Triple>)

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(
	string graphUri,
	IEnumerable<Triple> additions,
	IEnumerable<Triple> removals
)

Parameters

graphUri
Type: System.String
URI of the Graph.
additions
Type: System.Collections.Generic.IEnumerable<Triple>
Triples to be added.
removals
Type: System.Collections.Generic.IEnumerable<Triple>
Triples to be removed.

Implements

IStorageProvider.UpdateGraph(String, IEnumerable<Triple>, IEnumerable<Triple>)
Exceptions
ExceptionCondition
RdfStorageExceptionThrown since you cannot update a Graph using a read-only connection.
See Also