Base:
property
Headers
System.Net.WebResponse.Headers
9 references to Headers
dotnet-svcutil-lib (1)
Metadata\HttpAuthenticationHelper.cs (1)
75string challenge = httpResponse.Headers[HttpResponseHeader.WwwAuthenticate];
Microsoft.ML.Core (1)
Utilities\ResourceManagerUtils.cs (1)
325if (webResponse.StatusCode == HttpStatusCode.Redirect && webResponse.Headers["Location"] == "https://www.microsoft.com/?ref=aka")
PresentationCore (3)
MS\Internal\AppModel\CookieHandler.cs (2)
68WebHeaderCollection headers = httpResponse.Headers; 80string p3pHeader = httpResponse.Headers["P3P"];
MS\Internal\IO\Packaging\ByteRangeDownloader.cs (1)
529if (CheckContentRange(webResponse.Headers, beginOffset, ref endOffset))
System.Net.Requests (4)
System\Net\HttpWebResponse.cs (4)
146string? lastmodHeaderValue = Headers["Last-Modified"]; 173string? server = Headers["Server"]; 267string? contentType = Headers["Content-Type"]; 358string? headerValue = Headers[headerName];