BaseStardogConnectorSaveGraphAsync Method (String, Boolean, IGraph, AsyncStorageCallback, Object) | 
 
            Save a graph to the database asynchronously within the context of an open transaction.
            
 
    Namespace: 
   VDS.RDF.Storage
    Assembly:
   dotNetRDF (in dotNetRDF.dll) Version: 
Syntaxprotected virtual void SaveGraphAsync(
	string tID,
	bool autoCommit,
	IGraph g,
	AsyncStorageCallback callback,
	Object state
)
Protected Overridable Sub SaveGraphAsync ( 
	tID As String,
	autoCommit As Boolean,
	g As IGraph,
	callback As AsyncStorageCallback,
	state As Object
)
Parameters
- tID
 - Type: SystemString
The ID of the transaction to use for the update. - autoCommit
 - Type: SystemBoolean
True to commit the transaction on completion. - g
 - Type: VDS.RDFIGraph
The graph to write. - callback
 - Type: VDS.RDF.StorageAsyncStorageCallback
Callback invoked on completion. - state
 - Type: SystemObject
State parameter to pass to the callback. 
See Also