你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

HttpHeadersCollection 构造函数

定义

重载

HttpHeadersCollection()

初始化 HTTP 标头的空集合

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

从键值对的 IEnumerable 初始化 HTTP 标头集合,其中每个键 (HTTP 标头名称) 可以有多个标头值。

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

从键值对的 IEnumerable 初始化 HTTP 标头的集合。

HttpHeadersCollection()

Source:
HttpHeadersCollection.cs

初始化 HTTP 标头的空集合

public HttpHeadersCollection ();
Public Sub New ()

适用于

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

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

Source:
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 标头名称和值的键值对的集合。

适用于