This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.Http.
Summary
PATCH the specified resource over over HTTP/HTTPS.
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. |