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
)
Protected Overridable Sub UpdateGraphAsync (
tID As String,
autoCommit As Boolean,
graphUri As String,
additions As IEnumerable(Of Triple),
removals As IEnumerable(Of Triple),
callback As AsyncStorageCallback,
state As Object
)
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