6 implementations of Headers
Microsoft.AspNetCore.Http (1)
Features\HttpResponseFeature.cs (1)
28public IHeaderDictionary Headers { get; set; }
Microsoft.AspNetCore.Owin (1)
OwinFeatureCollection.cs (1)
147IHeaderDictionary IHttpResponseFeature.Headers
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
449IHeaderDictionary IHttpResponseFeature.Headers
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
178IHeaderDictionary IHttpResponseFeature.Headers
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
136IHeaderDictionary IHttpResponseFeature.Headers
Microsoft.AspNetCore.TestHost (1)
ResponseFeature.cs (1)
62public IHeaderDictionary Headers { get; set; }
1 write to Headers
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
421{ OwinConstants.ResponseHeaders, new FeatureMap<IHttpResponseFeature>(feature => Utilities.MakeDictionaryStringArray(feature.Headers), (feature, value) => feature.Headers = Utilities.MakeHeaderDictionary((IDictionary<string, string[]>)value)) },
9 references to Headers
Microsoft.AspNetCore.Http (5)
Features\DefaultConnectionLifetimeNotificationFeature.cs (1)
34_httpResponseFeature.Headers.Connection = "close";
Internal\DefaultHttpResponse.cs (3)
64get { return HttpResponseFeature.Headers; } 103HttpResponseFeature.Headers.ContentType = default; 107HttpResponseFeature.Headers.ContentType = value;
Internal\ResponseCookies.cs (1)
26Headers = _features.GetRequiredFeature<IHttpResponseFeature>().Headers;
Microsoft.AspNetCore.Http.Features (2)
IHttpResponseFeature.cs (2)
44/// <see cref="ReasonPhrase"/>, and <see cref="Headers"/> are now immutable, and 53/// This is the last chance to modify the <see cref="Headers"/>, <see cref="StatusCode"/>, or
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
421{ OwinConstants.ResponseHeaders, new FeatureMap<IHttpResponseFeature>(feature => Utilities.MakeDictionaryStringArray(feature.Headers), (feature, value) => feature.Headers = Utilities.MakeHeaderDictionary((IDictionary<string, string[]>)value)) },
Microsoft.AspNetCore.TestHost (1)
HttpContextBuilder.cs (1)
243Headers = serverResponseFeature.Headers,