HttpFormUrlEncodedContent コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したコンテンツを使用して 、HttpFormUrlEncodedContent クラスの新しいインスタンスを初期化します。
public:
HttpFormUrlEncodedContent(IIterable<IKeyValuePair<Platform::String ^, Platform::String ^> ^> ^ content);
HttpFormUrlEncodedContent(IIterable<IKeyValuePair<winrt::hstring, winrt::hstring const&>> const& content);
public HttpFormUrlEncodedContent(IEnumerable<KeyValuePair<string,string>> content);
function HttpFormUrlEncodedContent(content)
Public Sub New (content As IEnumerable(Of KeyValuePair(Of String, String)))
パラメーター
- content
-
IIterable<IKeyValuePair<Platform::String,Platform::String>>
IIterable<IKeyValuePair<winrt::hstring,winrt::hstring>>
HttpFormUrlEncodedContent の初期化に使用されるコンテンツ。
例
auto contentKeyValuePairs{
winrt::single_threaded_map<winrt::hstring, winrt::hstring>(std::map<winrt::hstring, winrt::hstring>{
{ L"firstname", L"Jane" }, { L"lastname", L"Austen" }
})
};
Windows::Web::Http::HttpFormUrlEncodedContent content1{ contentKeyValuePairs };
Windows::Web::Http::HttpFormUrlEncodedContent content2{
std::map<winrt::hstring, winrt::hstring>{
{ L"firstname", L"Jane" }, { L"lastname", L"Austen" }}
};
注釈
この関数がスローする例外を次に示します。
E_INVALIDARG
content パラメーターが null (Visual Basic では Nothing) です。