HttpHeadersCollection コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
HttpHeadersCollection() |
HTTP ヘッダーの空のコレクションを初期化します |
HttpHeadersCollection(IEnumerable<KeyValuePair<String,IEnumerable<String>>>) |
キーと値のペアの IEnumerable から HTTP ヘッダーのコレクションを初期化します。各キー (HTTP ヘッダー名) には複数のヘッダー値を指定できます。 |
HttpHeadersCollection(IEnumerable<KeyValuePair<String,String>>) |
キー値ペアの IEnumerable から HTTP ヘッダーのコレクションを初期化します。 |
HttpHeadersCollection()
HTTP ヘッダーの空のコレクションを初期化します
public HttpHeadersCollection ();
Public Sub New ()
適用対象
HttpHeadersCollection(IEnumerable<KeyValuePair<String,IEnumerable<String>>>)
キーと値のペアの 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>>)
キー値ペアの 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 ヘッダーの名前と値を表すキー値ペアのコレクション。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET