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 over HTTP/HTTPS.
Syntax
public static Task<string> HttpGetAsync(this ICakeContext context, string address, Action<HttpSettings> configurator)
Examples
var responseBody = await HttpGetAsync("https://www.google.com", settings =>
{
settings.UseBearerAuthorization("1af538baa9045a84c0e889f672baf83ff24")
.SetNoCache()
.AppendHeader("Connection", "keep-alive");
});
Attributes
| Type |
Description |
| AsyncStateMachineAttribute |
|
| CakeAliasCategoryAttribute |
|
| CakeMethodAliasAttribute |
|
Parameters
| Name |
Type |
Description |
| context |
ICakeContext |
The context. |
| address |
string |
The URL of the resource to GET. |
| configurator |
Action<HttpSettings> |
The settings configurator. |
Return Value
| Type |
Description |
| Task<string> |
Content of the request as a string. |