HttpClientAsyncAliases.

HttpPatchAsync(ICakeContext, string, HttpSettings) Method

Summary

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

Syntax

public static Task<string> HttpPatchAsync(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 = false
        };

        string responseBody = await HttpPatchAsync("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 PATCH.
settings HttpSettings The settings

Return Value

Type Description
Task<string> Content of the response body as a string.