13 instantiations of HttpHeaderInfo
System.ServiceModel (13)
System\ServiceModel\Channels\HttpHeaderInfo.cs (13)
21
new
HttpHeaderInfo
("Allow") { IsContentHeader = true },
22
new
HttpHeaderInfo
("Content-Encoding") { IsContentHeader = true },
23
new
HttpHeaderInfo
("Content-Language") { IsContentHeader = true },
24
new
HttpHeaderInfo
("Content-Length") { IsContentHeader = true },
25
new
HttpHeaderInfo
("Content-Location") { IsContentHeader = true },
26
new
HttpHeaderInfo
("Content-MD5") { IsContentHeader = true },
27
new
HttpHeaderInfo
("Content-Range") { IsContentHeader = true },
28
new
HttpHeaderInfo
("Content-Type") { IsContentHeader = true },
29
new
HttpHeaderInfo
("Expires") { IsContentHeader = true },
30
new
HttpHeaderInfo
("Last-Modified") { IsContentHeader = true },
31
new
HttpHeaderInfo
("Content-Disposition") { IsContentHeader = true }
82
headerInfo = new
HttpHeaderInfo
(headerName, true);
149
headerInfo = new
HttpHeaderInfo
(header);
31 references to HttpHeaderInfo
System.ServiceModel (31)
System\ServiceModel\Channels\HttpHeaderInfo.cs (7)
19
private static readonly
HttpHeaderInfo
[] knownContentHeaders = new
HttpHeaderInfo
[]
37
private static ConcurrentDictionary<string,
HttpHeaderInfo
> knownHeadersInfos;
44
knownHeadersInfos = new ConcurrentDictionary<string,
HttpHeaderInfo
>(
75
public static
HttpHeaderInfo
Create(string headerName)
79
HttpHeaderInfo
headerInfo;
137
HttpHeaderInfo
headerInfo = null;
System\ServiceModel\Channels\HttpRequestMessageExtensionMethods.cs (12)
53
HttpHeaderInfo
headerInfo =
HttpHeaderInfo
.Create(header);
63
HttpHeaderInfo
headerInfo =
HttpHeaderInfo
.Create(header);
74
HttpHeaderInfo
headerInfo =
HttpHeaderInfo
.Create(header);
84
HttpHeaderInfo
headerInfo =
HttpHeaderInfo
.Create(header);
183
private static void EnsureNotResponseHeader(
HttpHeaderInfo
headerInfo)
193
private static IEnumerable<string> GetHeader(HttpRequestMessage httpRequestMessage,
HttpHeaderInfo
headerInfo)
216
private static void RemoveHeader(HttpRequestMessage httpRequestMessage,
HttpHeaderInfo
headerInfo)
233
private static void AddHeader(HttpRequestMessage httpRequestMessage,
HttpHeaderInfo
headerInfo, string value)
System\ServiceModel\Channels\HttpResponseMessageExtensionMethods.cs (12)
20
HttpHeaderInfo
headerInfo =
HttpHeaderInfo
.Create(header);
30
HttpHeaderInfo
headerInfo =
HttpHeaderInfo
.Create(header);
41
HttpHeaderInfo
headerInfo =
HttpHeaderInfo
.Create(header);
51
HttpHeaderInfo
headerInfo =
HttpHeaderInfo
.Create(header);
92
private static void EnsureNotRequestHeader(
HttpHeaderInfo
headerInfo)
102
private static IEnumerable<string> GetHeader(HttpResponseMessage httpResponseMessage,
HttpHeaderInfo
headerInfo)
125
private static void RemoveHeader(HttpResponseMessage httpResponseMessage,
HttpHeaderInfo
headerInfo)
142
private static void AddHeader(HttpResponseMessage httpResponseMessage,
HttpHeaderInfo
headerInfo, string value)