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