8 instantiations of ConnectionItems
Microsoft.AspNetCore.Connections.Abstractions (1)
DefaultConnectionContext.cs (1)
81public override IDictionary<object, object?> Items { get; set; } = new ConnectionItems();
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
180_items = new ConnectionItems(new ConcurrentDictionary<object, object?>());
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http\Http1Connection.FeatureCollection.cs (1)
36return _persistentState ?? (_persistentState = new ConnectionItems());
Internal\Http2\Http2Stream.FeatureCollection.cs (1)
73return _persistentState ?? (_persistentState = new ConnectionItems());
Internal\WebTransport\WebTransportStream.cs (1)
36get => _items ??= new ConnectionItems();
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (3)
Internal\QuicStreamContext.FeatureCollection.cs (1)
55return _persistentState ?? (_persistentState = new ConnectionItems());
src\aspnetcore\src\Servers\Kestrel\shared\TransportConnection.cs (1)
49return _items ?? (_items = new ConnectionItems());
src\aspnetcore\src\Servers\Kestrel\shared\TransportMultiplexedConnection.cs (1)
41return _items ?? (_items = new ConnectionItems());
2 references to ConnectionItems
Microsoft.AspNetCore.Connections.Abstractions (2)
ConnectionItems.cs (2)
19/// Initializes a new instance of <see cref="ConnectionItems"/>. 27/// Initializes a new instance of <see cref="ConnectionItems"/> with <paramref name="items"/>.