HttpClientAsyncAliases.

HttpPostAsByteArrayAsync(ICakeContext, string, HttpSettings) Method

Summary

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

Syntax

public static Task<byte[]> HttpPostAsByteArrayAsync(this ICakeContext context, string address, HttpSettings settings)

Examples

btye[] responseBody = await HttpPostAsByteArrayAsync("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 POST.
settings HttpSettings The settings

Return Value

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