次の方法で共有


HttpHeadersCollection コンストラクター

定義

オーバーロード

HttpHeadersCollection()

HTTP ヘッダーの空のコレクションを初期化します

HttpHeadersCollection(IEnumerable<KeyValuePair<String,IEnumerable<String>>>)

キーと値のペアの IEnumerable から HTTP ヘッダーのコレクションを初期化します。各キー (HTTP ヘッダー名) には複数のヘッダー値を指定できます。

HttpHeadersCollection(IEnumerable<KeyValuePair<String,String>>)

キー値ペアの IEnumerable から HTTP ヘッダーのコレクションを初期化します。

HttpHeadersCollection()

ソース:
HttpHeadersCollection.cs

HTTP ヘッダーの空のコレクションを初期化します

public HttpHeadersCollection ();
Public Sub New ()

適用対象

HttpHeadersCollection(IEnumerable<KeyValuePair<String,IEnumerable<String>>>)

ソース:
HttpHeadersCollection.cs

キーと値のペアの IEnumerable から HTTP ヘッダーのコレクションを初期化します。各キー (HTTP ヘッダー名) には複数のヘッダー値を指定できます。

public HttpHeadersCollection (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,System.Collections.Generic.IEnumerable<string>>> headers);
new Microsoft.Azure.Functions.Worker.Http.HttpHeadersCollection : seq<System.Collections.Generic.KeyValuePair<string, seq<string>>> -> Microsoft.Azure.Functions.Worker.Http.HttpHeadersCollection
Public Sub New (headers As IEnumerable(Of KeyValuePair(Of String, IEnumerable(Of String))))

パラメーター

headers
IEnumerable<KeyValuePair<String,IEnumerable<String>>>

HTTP ヘッダーの名前と値を表すキー値ペアのコレクション。

適用対象

HttpHeadersCollection(IEnumerable<KeyValuePair<String,String>>)

ソース:
HttpHeadersCollection.cs

キー値ペアの IEnumerable から HTTP ヘッダーのコレクションを初期化します。

public HttpHeadersCollection (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string>> headers);
new Microsoft.Azure.Functions.Worker.Http.HttpHeadersCollection : seq<System.Collections.Generic.KeyValuePair<string, string>> -> Microsoft.Azure.Functions.Worker.Http.HttpHeadersCollection
Public Sub New (headers As IEnumerable(Of KeyValuePair(Of String, String)))

パラメーター

headers
IEnumerable<KeyValuePair<String,String>>

HTTP ヘッダーの名前と値を表すキー値ペアのコレクション。

適用対象