HttpClientAliases.

HttpPatch(ICakeContext, string, HttpSettings) Method

Summary

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

Syntax

public static string HttpPatch(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 = HttpPatch("https://www.google.com/1", settings);

Attributes

Type Description
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
string Content of the response body as a string.