HttpClient.DeleteAsync Method (String)

Sends a DELETE request to the specified Uri 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 _
) As Task(Of HttpResponseMessage)
'Usage
Dim instance As HttpClient 
Dim requestUri As String 
Dim returnValue As Task(Of HttpResponseMessage)

returnValue = instance.DeleteAsync(requestUri)
public Task<HttpResponseMessage> DeleteAsync(
    string requestUri
)
public:
Task<HttpResponseMessage^>^ DeleteAsync(
    String^ requestUri
)
member DeleteAsync : 
        requestUri:string -> Task<HttpResponseMessage> 
public function DeleteAsync(
    requestUri : String
) : Task<HttpResponseMessage>

Parameters

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

See Also

Reference

HttpClient Class

DeleteAsync Overload

System.Net.Http Namespace