Click or drag to resize

BaseAsyncHttpConnectorUpdateGraphAsync Method

Helper method for doing async update operations, callers just need to provide an appropriately prepared HTTP request and a RDF writer which will be used to write the data to the request body.

Namespace:  VDS.RDF.Storage
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
protected void UpdateGraphAsync(
	HttpWebRequest request,
	IRdfWriter writer,
	Uri graphUri,
	IEnumerable<Triple> ts,
	AsyncStorageCallback callback,
	Object state
)

Parameters

request
Type: System.NetHttpWebRequest
HTTP Request.
writer
Type: VDS.RDFIRdfWriter
RDF writer.
graphUri
Type: SystemUri
URI of the Graph to update.
ts
Type: System.Collections.GenericIEnumerableTriple
Triples.
callback
Type: VDS.RDF.StorageAsyncStorageCallback
Callback.
state
Type: SystemObject
State to pass to the callback.
See Also