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