2 instantiations of HeaderCollection
Microsoft.AspNetCore.Server.HttpSys (2)
RequestProcessing\Response.cs (2)
39
Headers = new
HeaderCollection
();
148
public HeaderCollection Trailers => _trailers ??= new
HeaderCollection
(checkTrailers: true) { IsReadOnly = BodyIsFinished };
5 references to HeaderCollection
Microsoft.AspNetCore.Server.HttpSys (5)
RequestProcessing\Response.cs (3)
33
private
HeaderCollection
? _trailers;
146
public
HeaderCollection
Headers { get; }
148
public
HeaderCollection
Trailers => _trailers ??= new HeaderCollection(checkTrailers: true) { IsReadOnly = BodyIsFinished };
src\Shared\HttpSys\RequestProcessing\HeaderCollection.cs (2)
295
private sealed class HeaderCollectionDebugView(
HeaderCollection
collection)
297
private readonly
HeaderCollection
_collection = collection;