Table of Contents

Constructor HttpHeaderCollection

Namespace
Sisk.Core.Entity
Assembly
Sisk.Core.dll

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 WebHeaderCollection

The inner collection to add to this collection.