2 implementations of IStatefulReconnectFeature
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
36IStatefulReconnectFeature
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)
118Features.Set<IStatefulReconnectFeature>(this);
Microsoft.AspNetCore.Http.Connections.Client (1)
HttpConnection.cs (1)
563if (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)
529var statefulReconnectFeature = connection.Features.Get<IStatefulReconnectFeature>(); 907if (connectionState.Connection.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 1657if (connectionState.Connection.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 2458if (Connection.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature)
Microsoft.AspNetCore.SignalR.Core (4)
HubConnectionContext.cs (4)
577if (_useStatefulReconnect && _connectionContext.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 703if (_connectionContext.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature)