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 byte[] HttpPatchAsByteArray(this ICakeContext context, string address, HttpSettings settings)
Examples
byte[] responseBody = HttpPatchAsByteArray("https://www.google.com/1", new HttpSettings());
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 |
byte[] |
Content of the response body as a byte array. |