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.Rest.
Summary
Sends a REST request and receives its response.
Syntax
public static IRestResponse Rest(this ICakeContext context, string method, Uri endpoint, IDictionary<string, string> headers, BodyType bodyType, string body)
Attributes
| Type |
Description |
| CakeMethodAliasAttribute |
|
| CakeNamespaceImportAttribute |
|
| CakeNamespaceImportAttribute |
|
Parameters
| Name |
Type |
Description |
| context |
ICakeContext |
Cake build context |
| method |
string |
HTTP method |
| endpoint |
Uri |
Endpoint local address, starting with / |
| headers |
IDictionary<string, string> |
HTTP headers, null for no headers |
| bodyType |
BodyType |
Content type of request body |
| body |
string |
Contents of request body |
Return Value
| Type |
Description |
| IRestResponse |
REST response |