2 instantiations of HeaderCollection
Microsoft.AspNetCore.Server.IIS (2)
Core\IISHttpContext.cs (2)
141private HeaderCollection HttpResponseTrailers => _trailers ??= new HeaderCollection(checkTrailers: true); 272HttpResponseHeaders = new HeaderCollection();
5 references to HeaderCollection
Microsoft.AspNetCore.Server.IIS (5)
Core\IISHttpContext.cs (3)
68private HeaderCollection? _trailers; 140private HeaderCollection HttpResponseHeaders { get; set; } = default!; 141private 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;