BaseAsyncSafeConnectorUpdateGraph Method (Uri, IEnumerableTriple, IEnumerableTriple, AsyncStorageCallback, Object) |
Updates a Graph in the Store asychronously.
Namespace:
VDS.RDF.Storage
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public void UpdateGraph(
Uri graphUri,
IEnumerable<Triple> additions,
IEnumerable<Triple> removals,
AsyncStorageCallback callback,
Object state
)
Public Sub UpdateGraph (
graphUri As Uri,
additions As IEnumerable(Of Triple),
removals As IEnumerable(Of Triple),
callback As AsyncStorageCallback,
state As Object
)
Parameters
- graphUri
- Type: SystemUri
URI of the Graph to update. - additions
- Type: System.Collections.GenericIEnumerableTriple
Triples to be added. - removals
- Type: System.Collections.GenericIEnumerableTriple
Triples to be removed. - callback
- Type: VDS.RDF.StorageAsyncStorageCallback
Callback. - state
- Type: SystemObject
State to pass to the callback.
Implements
IAsyncStorageProviderUpdateGraph(Uri, IEnumerableTriple, IEnumerableTriple, AsyncStorageCallback, Object)See Also