HttpClient.DeleteAsync Method (String, CancellationToken)
Sends a DELETE request to the specified Uri with a cancellation token as an asynchronous operation.
Namespace: System.Net.Http
Assembly: System.Net.Http (in System.Net.Http.dll)
Syntax
'Declaration
Public Function DeleteAsync ( _
requestUri As String, _
cancellationToken As CancellationToken _
) As Task(Of HttpResponseMessage)
'Usage
Dim instance As HttpClient
Dim requestUri As String
Dim cancellationToken As CancellationToken
Dim returnValue As Task(Of HttpResponseMessage)
returnValue = instance.DeleteAsync(requestUri, _
cancellationToken)
public Task<HttpResponseMessage> DeleteAsync(
string requestUri,
CancellationToken cancellationToken
)
public:
Task<HttpResponseMessage^>^ DeleteAsync(
String^ requestUri,
CancellationToken cancellationToken
)
member DeleteAsync :
requestUri:string *
cancellationToken:CancellationToken -> Task<HttpResponseMessage>
public function DeleteAsync(
requestUri : String,
cancellationToken : CancellationToken
) : Task<HttpResponseMessage>
Parameters
- requestUri
Type: System.String
The Uri the request is sent to.
- cancellationToken
Type: System.Threading.CancellationToken
A cancellation token that can be used by other objects or threads to receive notice of cancellation.
Return Value
Type: System.Threading.Tasks.Task<HttpResponseMessage>
The task object representing the asynchronous operation.
Remarks
This operation will not block. The returned task object will complete after the whole response (including content) is read.
For a complete example of using the HttpClient class, see Calling a Web API From a .NET Client