Base:
property
Features
Microsoft.AspNetCore.Connections.BaseConnectionContext.Features
1 write to Features
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
95Features = new FeatureCollection();
15 references to Features
Microsoft.AspNetCore.Http.Connections (15)
Internal\HttpConnectionContext.cs (13)
96Features.Set<IConnectionUserFeature>(this); 97Features.Set<IConnectionUserRefreshFeature>(this); 98Features.Set<IConnectionItemsFeature>(this); 99Features.Set<IConnectionIdFeature>(this); 100Features.Set<IConnectionTransportFeature>(this); 101Features.Set<IConnectionHeartbeatFeature>(this); 102Features.Set<ITransferFormatFeature>(this); 103Features.Set<IHttpContextFeature>(this); 104Features.Set<IHttpTransportFeature>(this); 105Features.Set<IConnectionInherentKeepAliveFeature>(this); 106Features.Set<IConnectionLifetimeFeature>(this); 107Features.Set<IConnectionLifetimeNotificationFeature>(this); 112Features.Set<IStatefulReconnectFeature>(this);
Internal\HttpConnectionDispatcher.cs (2)
844connection.Features.Set(context.Features.Get<IHttpConnectionFeature>()); 848connection.Features.Set(context.Features.Get<IConnectionEndPointFeature>());