HttpClientAsyncAliases.

HttpGetAsByteArrayAsync(ICakeContext, string, HttpSettings) Method

Summary

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

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.