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
在 Visual Basic) 中 ,content 參數為 null (Nothing 。