HttpClientAsyncAliases.

HttpPostAsync(ICakeContext, string) Method

Summary

POST the specified resource over HTTP.
Assembly
Cake.Http.dll
Namespace
Cake.Http
Containing Type
HttpClientAsyncAliases

Syntax

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

Examples

string responseBody = await HttpPostAsync("https://www.google.com");

Attributes

Type Description
AsyncStateMachineAttribute
CakeAliasCategoryAttribute
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
address string The URL of the resource to POST.

Return Value

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