Share via


HttpClientExtensions.DeleteAsync Method

Namespace:  Microsoft.VisualStudio.Services.WebApi
Assembly:  Microsoft.VisualStudio.Services.WebApi (in Microsoft.VisualStudio.Services.WebApi.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function DeleteAsync ( _
    client As HttpClient, _
    uri As String, _
    content As HttpContent _
) As Task(Of HttpResponseMessage)
public static Task<HttpResponseMessage> DeleteAsync(
    this HttpClient client,
    string uri,
    HttpContent content
)
[ExtensionAttribute]
public:
static Task<HttpResponseMessage^>^ DeleteAsync(
    HttpClient^ client, 
    String^ uri, 
    HttpContent^ content
)
static member DeleteAsync : 
        client:HttpClient * 
        uri:string * 
        content:HttpContent -> Task<HttpResponseMessage> 
public static function DeleteAsync(
    client : HttpClient, 
    uri : String, 
    content : HttpContent
) : Task<HttpResponseMessage>

Parameters

Return Value

Type: System.Threading.Tasks.Task<HttpResponseMessage>

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type HttpClient. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

.NET Framework Security

See Also

Reference

HttpClientExtensions Class

Microsoft.VisualStudio.Services.WebApi Namespace