13 references to HttpResponseHeader
dotnet-svcutil-lib (1)
Metadata\HttpAuthenticationHelper.cs (1)
75string challenge = httpResponse.Headers[HttpResponseHeader.WwwAuthenticate];
netstandard (1)
netstandard.cs (1)
1149[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.HttpResponseHeader))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
634[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.HttpResponseHeader))]
System.Net.HttpListener (5)
System\Net\HttpListenerResponse.cs (4)
129get => Headers[HttpResponseHeader.Location]; 195if (NetEventSource.Log.IsEnabled()) NetEventSource.Info(this, $"Entering Set-Cookie: {Headers[HttpResponseHeader.SetCookie]}, Set-Cookie2: {Headers[HttpKnownHeaderNames.SetCookie2]}"); 239if (NetEventSource.Log.IsEnabled()) NetEventSource.Info(this, $"Exiting Set-Cookie: {Headers[HttpResponseHeader.SetCookie]} Set-Cookie2: {Headers[HttpKnownHeaderNames.SetCookie2]}"); 245Headers[HttpResponseHeader.Location] = url;
System\Net\Managed\HttpListenerResponse.Managed.cs (1)
257Headers[HttpResponseHeader.KeepAlive] = "true";
System.Net.WebHeaderCollection (5)
System\Net\HttpResponseHeader.cs (1)
76public static string GetName(this HttpResponseHeader header)
System\Net\WebHeaderCollection.cs (4)
87public string? this[HttpResponseHeader header] 131public void Set(HttpResponseHeader header, string? value) 161public void Remove(HttpResponseHeader header) 298public void Add(HttpResponseHeader header, string? value)