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
GETS the specified resource over HTTP/HTTPS.
Syntax
public static Task<byte[]> HttpGetAsByteArrayAsync(this ICakeContext context, string address, HttpSettings settings)
Examples
byte[] responseBody = await HttpGetAsByteArrayAsync("https://www.google.com", new HttpSettings());
Attributes
| Type |
Description |
| AsyncStateMachineAttribute |
|
| CakeAliasCategoryAttribute |
|
| CakeMethodAliasAttribute |
|
Parameters
| Name |
Type |
Description |
| context |
ICakeContext |
The context. |
| address |
string |
The URL of the resource to GET. |
| settings |
HttpSettings |
The settings |
Return Value
| Type |
Description |
| Task<byte[]> |
Content of the response body as a byte array. |