HttpClientAliases.

HttpPutAsByteArray(ICakeContext, string, HttpSettings) Method

Summary

PUT the specified resource over over HTTP/HTTPS.
Assembly
Cake.Http.dll
Namespace
Cake.Http
Containing Type
HttpClientAliases

Syntax

public static byte[] HttpPutAsByteArray(this ICakeContext context, string address, HttpSettings settings)

Examples

byte[] responseBody = HttpPutAsByteArray("https://www.google.com/1", new HttpSettings());

Attributes

Type Description
CakeAliasCategoryAttribute
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
address string The URL of the resource to PUT.
settings HttpSettings The settings

Return Value

Type Description
byte[] Content of the response body as a byte array.