HttpClientAsyncAliases.

HttpSendAsync(ICakeContext, string, string) Method

Summary

Sends the HTTP Request using the generic HttpClient Send Method.
Assembly
Cake.Http.dll
Namespace
Cake.Http
Containing Type
HttpClientAsyncAliases

Syntax

public static Task<string> HttpSendAsync(this ICakeContext context, string address, string httpMethod)

Attributes

Type Description
AsyncStateMachineAttribute
CakeAliasCategoryAttribute
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
address string The URL of the resource.
httpMethod string Http Method used to: POST, PUT, GET, DELETE, PATCH, etc.

Return Value

Type Description
Task<string> Content of the response body as a string.