HttpClientAsyncAliases.

HttpDeleteAsync(ICakeContext, string, HttpSettings) Method

Summary

DELETE the specified resource over over HTTP/HTTPS.
Assembly
Cake.Http.dll
Namespace
Cake.Http
Containing Type
HttpClientAsyncAliases

Syntax

public static Task HttpDeleteAsync(this ICakeContext context, string address, HttpSettings settings)

Examples

        var settings = new HttpSettings
        {
           Headers = new Dictionary<string, string>
            {
              { "Authorization", "Bearer 1af538baa9045a84c0e889f672baf83ff24" },
                { "Cache-Control", "no-store" },
                { "Connection", "keep-alive" }
            },
            UseDefaultCredentials = true,
            EnsureSuccessStatusCode = true
        };

        await HttpDeleteAsync("https://www.google.com/1", settings);

Attributes

Type Description
AsyncStateMachineAttribute
CakeAliasCategoryAttribute
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
address string The URL of the resource to DELETE.
settings HttpSettings The settings

Return Value

Type Description
Task