Constructor HttpHeaderCollection
HttpHeaderCollection()
Create an new instance of the HttpHeaderCollection class.
public HttpHeaderCollection()
HttpHeaderCollection(IDictionary<string, string[]>)
Create an new instance of the HttpHeaderCollection class with values from another collection.
public HttpHeaderCollection(IDictionary<string, string[]> items)
Parameters
items
IDictionary<string, string[]>The inner collection to add to this collection.
HttpHeaderCollection(IDictionary<string, string?>)
Create an new instance of the HttpHeaderCollection class with values from another collection.
public HttpHeaderCollection(IDictionary<string, string?> items)
Parameters
items
IDictionary<string, string>The inner collection to add to this collection.
HttpHeaderCollection(WebHeaderCollection)
Create an new instance of the HttpHeaderCollection class with values from another collection.
public HttpHeaderCollection(WebHeaderCollection items)
Parameters
items
WebHeaderCollectionThe inner collection to add to this collection.