Implemented interface member:
property
this
Microsoft.AspNetCore.Http.IHeaderDictionary.this[System.String]
5 writes to
Microsoft.AspNetCore.Server.HttpSys (5)
AuthenticationManager.cs (1)
185context.Response.Headers[HeaderNames.WWWAuthenticate]
RequestProcessing\RequestContext.FeatureCollection.cs (1)
734Response.Headers[HeaderNames.Connection] = "close";
RequestProcessing\Response.cs (2)
436Headers[HeaderNames.ContentLength] = Constants.Zero; 444Headers[HeaderNames.TransferEncoding] = Constants.Chunked;
src\Shared\HttpSys\RequestProcessing\HeaderCollection.cs (1)
153this[HeaderNames.ContentLength] = _contentLengthText;
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)
654var cacheControlHeader = response.Headers[HeaderNames.CacheControl]; 683if (HeaderUtilities.TryParseDate(response.Headers[HeaderNames.Expires].ToString(), out expirationDate))
RequestProcessing\Response.cs (2)
397var responseConnectionString = Headers[HeaderNames.Connection]; 398var transferEncodingString = Headers[HeaderNames.TransferEncoding];
src\Shared\HttpSys\RequestProcessing\HeaderCollection.cs (1)
123var rawValue = this[HeaderNames.ContentLength];