HttpSettingsExtensions.

SetFormUrlEncodedRequestBody(HttpSettings, IEnumerable<KeyValuePair<string, string>>) Method

Summary

Sets the request body as form url encoded. Only valid for Http Methods that allow a request body. Any existing content in the RequestBody is overridden. Accepts multiple parameters with the same key.
Assembly
Cake.Http.dll
Namespace
Cake.Http
Containing Type
HttpSettingsExtensions

Syntax

public static HttpSettings SetFormUrlEncodedRequestBody(this HttpSettings settings, IEnumerable<KeyValuePair<string, string>> data)

Parameters

Name Type Description
settings HttpSettings The settings.
data IEnumerable<KeyValuePair<string, string>> Enumerable of KeyValuePair<TKey, TValue> of data to url encode and set to the body.

Return Value

Type Description
HttpSettings The same HttpSettings instance so that multiple calls can be chained.