Click or drag to resize

BaseAsyncSafeConnector.UpdateGraph Method (String, IEnumerable<Triple>, IEnumerable<Triple>, AsyncStorageCallback, Object)

Updates a Graph in the Store asychronously.

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

Parameters

graphUri
Type: System.String
URI of the Graph to update.
additions
Type: System.Collections.Generic.IEnumerable<Triple>
Triples to be added.
removals
Type: System.Collections.Generic.IEnumerable<Triple>
Triples to be removed.
callback
Type: VDS.RDF.Storage.AsyncStorageCallback
Callback.
state
Type: System.Object
State to pass to the callback.

Implements

IAsyncStorageProvider.UpdateGraph(String, IEnumerable<Triple>, IEnumerable<Triple>, AsyncStorageCallback, Object)
See Also