2 instantiations of HeaderCollection
Microsoft.AspNetCore.Server.IIS (2)
Core\IISHttpContext.cs (2)
134private HeaderCollection HttpResponseTrailers => _trailers ??= new HeaderCollection(checkTrailers: true); 265HttpResponseHeaders = new HeaderCollection();
5 references to HeaderCollection
Microsoft.AspNetCore.Server.IIS (5)
Core\IISHttpContext.cs (3)
67private HeaderCollection? _trailers; 133private HeaderCollection HttpResponseHeaders { get; set; } = default!; 134private HeaderCollection HttpResponseTrailers => _trailers ??= new HeaderCollection(checkTrailers: true);
src\Shared\HttpSys\RequestProcessing\HeaderCollection.cs (2)
295private sealed class HeaderCollectionDebugView(HeaderCollection collection) 297private readonly HeaderCollection _collection = collection;