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 HTTP/HTTPS.
Syntax
public static Task<string> HttpPatchAsync(this ICakeContext context, string address)
Examples
string responseBody = await HttpPatchAsync("https://www.google.com/1");
Attributes
Type |
Description |
AsyncStateMachineAttribute |
|
CakeAliasCategoryAttribute |
|
CakeMethodAliasAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
address |
string |
The URL of the resource to PATCH. |
Return Value
Type |
Description |
Task<string> |
Content of the response body a string |