Base:
property
Features
Microsoft.AspNetCore.Connections.BaseConnectionContext.Features
1 write to Features
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
88Features = new FeatureCollection();
13 references to Features
Microsoft.AspNetCore.Http.Connections (13)
Internal\HttpConnectionContext.cs (12)
89Features.Set<IConnectionUserFeature>(this); 90Features.Set<IConnectionItemsFeature>(this); 91Features.Set<IConnectionIdFeature>(this); 92Features.Set<IConnectionTransportFeature>(this); 93Features.Set<IConnectionHeartbeatFeature>(this); 94Features.Set<ITransferFormatFeature>(this); 95Features.Set<IHttpContextFeature>(this); 96Features.Set<IHttpTransportFeature>(this); 97Features.Set<IConnectionInherentKeepAliveFeature>(this); 98Features.Set<IConnectionLifetimeFeature>(this); 99Features.Set<IConnectionLifetimeNotificationFeature>(this); 104Features.Set<IStatefulReconnectFeature>(this);
Internal\HttpConnectionDispatcher.cs (1)
603connection.Features.Set(context.Features.Get<IHttpConnectionFeature>());