4 overrides of Headers
PresentationCore (1)
Core\CSharp\System\IO\Packaging\PackWebResponse.cs (1)
339public override WebHeaderCollection Headers
System (3)
net\System\Net\filewebresponse.cs (1)
121public override WebHeaderCollection Headers {
net\System\Net\FtpWebResponse.cs (1)
140public override WebHeaderCollection Headers {
net\System\Net\HttpWebResponse.cs (1)
137public override WebHeaderCollection Headers {
13 references to Headers
PresentationCore (1)
Core\CSharp\System\IO\Packaging\PackWebResponse.cs (1)
351return _fullResponse.Headers;
System (10)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (8)
791if (ctx.ResponseLastModified == DateTime.MinValue && ctx.Response.Headers.ETag == null) { 1095if (ctx.CacheHeaders.ETag != ctx.Response.Headers.ETag || 1096(ctx.CacheHeaders.LastModified != ctx.Response.Headers.LastModified 1097&& (ctx.Response.Headers.LastModified != null || ctx.Response.Headers.ETag == null))) 1817for (int i = 0; i < ctx.Response.Headers.Count; ++i) { 1818string key = ctx.Response.Headers.GetKey(i); 1834ctx.CacheHeaders.ChangeInternal(key, ctx.Response.Headers[i]);
net\System\Net\Cache\HttpRequestCacheValidator.cs (1)
727WebHeaderCollection cc = forCache? CacheHeaders: Response.Headers;
net\System\Net\webclient.cs (1)
228return m_WebResponse.Headers;
System.Web.Services (2)
System\Web\Services\Protocols\RemoteDebugger.cs (1)
224string bufferString = response.Headers[debuggerHeader];
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
607message.ContentEncoding = response.Headers[ContentType.ContentEncoding];