8 references to Features
Microsoft.AspNetCore.SignalR (1)
GetHttpContextExtensions.cs (1)
33return connection.Features.Get<IHttpContextFeature>()?.HttpContext;
Microsoft.AspNetCore.SignalR.Core (7)
HubConnectionContext.cs (5)
139_user = Features.Get<IConnectionUserFeature>()?.User ?? new ClaimsPrincipal(); 600var transferFormatFeature = Features.Get<ITransferFormatFeature>(); 618if (Features.Get<IConnectionInherentKeepAliveFeature>()?.HasInherentKeepAlive != true) 621Features.Get<IConnectionHeartbeatFeature>()?.OnHeartbeat(state => ((HubConnectionContext)state).KeepAliveTick(), this); 738Features.Get<IConnectionHeartbeatFeature>()?.OnHeartbeat(state => ((HubConnectionContext)state).CheckClientTimeout(), this);
Internal\DefaultHubCallerContext.cs (1)
34public override IFeatureCollection Features => _connection.Features;
Internal\DefaultHubDispatcher.cs (1)
856ConnectionEndpointTags.AddConnectionEndpointTags(ref tagList, connection.Features);