FormUrlEncodedContent Constructor

Definition

Initializes a new instance of the FormUrlEncodedContent class with a specific collection of name/value pairs.

public:
 FormUrlEncodedContent(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::String ^>> ^ nameValueCollection);
public FormUrlEncodedContent (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string>> nameValueCollection);
public FormUrlEncodedContent (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string?,string?>> nameValueCollection);
new System.Net.Http.FormUrlEncodedContent : seq<System.Collections.Generic.KeyValuePair<string, string>> -> System.Net.Http.FormUrlEncodedContent
Public Sub New (nameValueCollection As IEnumerable(Of KeyValuePair(Of String, String)))

Parameters

nameValueCollection
IEnumerable<KeyValuePair<String,String>>

A collection of name/value pairs.

Applies to