BaseAsyncHttpConnectorDeleteGraphAsync 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:
Syntax protected 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.NetHttpWebRequest
HTTP request. - allow404
- Type: SystemBoolean
Whether a 404 response counts as success. - graphUri
- Type: SystemString
URI of the Graph to delete. - callback
- Type: VDS.RDF.StorageAsyncStorageCallback
Callback. - state
- Type: SystemObject
State to pass to the callback.
See Also