2 implementations of IStatefulReconnectFeature
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
35IStatefulReconnectFeature
Microsoft.AspNetCore.Http.Connections.Client (1)
Internal\WebSocketsTransport.cs (1)
29internal sealed partial class WebSocketsTransport : ITransport, IStatefulReconnectFeature
15 references to IStatefulReconnectFeature
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
112Features.Set<IStatefulReconnectFeature>(this);
Microsoft.AspNetCore.Http.Connections.Client (1)
HttpConnection.cs (1)
559if (useStatefulReconnect && _transport is IStatefulReconnectFeature reconnectFeature)
Microsoft.AspNetCore.Http.Connections.Common (1)
NegotiationResponse.cs (1)
53/// It should also set <see cref="IStatefulReconnectFeature"/> on the <see cref="BaseConnectionContext.Features"/> collection so other layers of the
Microsoft.AspNetCore.SignalR.Client.Core (8)
HubConnection.cs (8)
507var statefulReconnectFeature = connection.Features.Get<IStatefulReconnectFeature>(); 773if (connectionState.Connection.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 1523if (connectionState.Connection.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 2343if (Connection.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature)
Microsoft.AspNetCore.SignalR.Core (4)
HubConnectionContext.cs (4)
573if (_useStatefulReconnect && _connectionContext.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 699if (_connectionContext.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature)