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)
'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)
Parameters
- requestUri
- Type: System.String
The Uri the request is sent to.
Return Value
Type: System.Threading.Tasks.Task(Of HttpResponseMessage)The task object representing the asynchronous operation.
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
Show: