BaseAsyncHttpConnector.DeleteGraphAsync Method |
Helper method for doing async delete operations, callers just need to provide an appropriately prepared HTTP request.
Namespace:
VDS.RDF.Storage
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxprotected void DeleteGraphAsync(
HttpWebRequest request,
bool allow404,
string graphUri,
AsyncStorageCallback callback,
Object state
)
Protected Sub DeleteGraphAsync (
request As HttpWebRequest,
allow404 As Boolean,
graphUri As String,
callback As AsyncStorageCallback,
state As Object
)
Parameters
- request
- Type: System.Net.HttpWebRequest
HTTP request. - allow404
- Type: System.Boolean
Whether a 404 response counts as success. - graphUri
- Type: System.String
URI of the Graph to delete. - callback
- Type: VDS.RDF.Storage.AsyncStorageCallback
Callback. - state
- Type: System.Object
State to pass to the callback.
See Also