Implemented interface member:
property
this
Microsoft.AspNetCore.Http.IHeaderDictionary.this[System.String]
9 writes to
Microsoft.AspNetCore.Server.HttpSys (5)
AuthenticationManager.cs (1)
185context.Response.Headers[HeaderNames.WWWAuthenticate]
RequestProcessing\RequestContext.FeatureCollection.cs (1)
754Response.Headers[HeaderNames.Connection] = "close";
RequestProcessing\Response.cs (2)
441Headers[HeaderNames.ContentLength] = Constants.Zero; 449Headers[HeaderNames.TransferEncoding] = Constants.Chunked;
src\Shared\HttpSys\RequestProcessing\HeaderCollection.cs (1)
153this[HeaderNames.ContentLength] = _contentLengthText;
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (4)
Listener\ResponseHeaderTests.cs (3)
262context.Response.Headers["Transfer-Encoding"] = new string[] { "chunked" }; 307responseHeaders[key] = value; 312responseHeaders[key] = new StringValues(new[] { "valid", value });
Listener\ServerTests.cs (1)
98context.Response.Headers["Connection"] = "close";
6 references to
Microsoft.AspNetCore.Server.HttpSys (6)
AuthenticationManager.cs (1)
186= StringValues.Concat(context.Response.Headers[HeaderNames.WWWAuthenticate], challenges.ToArray());
RequestProcessing\RequestContext.FeatureCollection.cs (2)
674var cacheControlHeader = response.Headers[HeaderNames.CacheControl]; 703if (HeaderUtilities.TryParseDate(response.Headers[HeaderNames.Expires].ToString(), out expirationDate))
RequestProcessing\Response.cs (2)
396var responseConnectionString = Headers[HeaderNames.Connection]; 397var transferEncodingString = Headers[HeaderNames.TransferEncoding];
src\Shared\HttpSys\RequestProcessing\HeaderCollection.cs (1)
123var rawValue = this[HeaderNames.ContentLength];