HttpClientAliases.

HttpDelete(ICakeContext, string, Action<HttpSettings>) Method

Summary

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

Syntax

public static void HttpDelete(this ICakeContext context, string address, Action<HttpSettings> configurator)

Examples

HttpDelete("https://www.google.com/1", settings =>
{
   settings.UseBearerAuthorization("1af538baa9045a84c0e889f672baf83ff24");
});

Attributes

Type Description
CakeAliasCategoryAttribute
CakeMethodAliasAttribute

Parameters

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

Return Value

Type Description
void