Click or drag to resize

BaseStardogConnectorUpdateGraphAsync Method (String, Boolean, String, IEnumerableTriple, IEnumerableTriple, AsyncStorageCallback, Object)

Apply an update to a graph as part of a transaction.

Namespace:  VDS.RDF.Storage
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
protected virtual void UpdateGraphAsync(
	string tID,
	bool autoCommit,
	string graphUri,
	IEnumerable<Triple> additions,
	IEnumerable<Triple> removals,
	AsyncStorageCallback callback,
	Object state
)

Parameters

tID
Type: SystemString
The ID of the open transaction to use.
autoCommit
Type: SystemBoolean
True to commit the transaction at the end of the update, false otherwise.
graphUri
Type: SystemString
The URI of the graph to be updated.
additions
Type: System.Collections.GenericIEnumerableTriple
The triples to inser.
removals
Type: System.Collections.GenericIEnumerableTriple
The triples to remove.
callback
Type: VDS.RDF.StorageAsyncStorageCallback
A callback to be invoked on completion.
state
Type: SystemObject
Additional state to pass to the callback.
See Also