BaseAsyncHttpConnectorSaveGraphAsync Method |
Helper method for doing async save operations, callers just need to provide an appropriately perpared HTTP requests 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 SaveGraphAsync(
HttpWebRequest request,
IRdfWriter writer,
IGraph g,
AsyncStorageCallback callback,
Object state
)
Protected Sub SaveGraphAsync (
request As HttpWebRequest,
writer As IRdfWriter,
g As IGraph,
callback As AsyncStorageCallback,
state As Object
)
Parameters
- request
- Type: System.NetHttpWebRequest
HTTP request. - writer
- Type: VDS.RDFIRdfWriter
RDF Writer. - g
- Type: VDS.RDFIGraph
Graph to save. - callback
- Type: VDS.RDF.StorageAsyncStorageCallback
Callback. - state
- Type: SystemObject
State to pass to the callback.
See Also