FormUrlEncodedContent 생성자

정의

특정 이름/값 쌍 컬렉션을 사용하여 클래스의 새 인스턴스 FormUrlEncodedContent 를 초기화합니다.

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)))

매개 변수

nameValueCollection
IEnumerable<KeyValuePair<String,String>>

이름/값 쌍의 컬렉션입니다.

적용 대상