6 writes to AllowStatefulReconnects
Microsoft.AspNetCore.Http.Connections.Tests (5)
HttpConnectionDispatcherTests.cs (5)
2300await dispatcher.ExecuteNegotiateAsync(context, new HttpConnectionDispatcherOptions { AllowStatefulReconnects = false }); 2329await dispatcher.ExecuteNegotiateAsync(context, new HttpConnectionDispatcherOptions { AllowStatefulReconnects = true }); 2358await dispatcher.ExecuteNegotiateAsync(context, new HttpConnectionDispatcherOptions { AllowStatefulReconnects = true }); 2376var options = new HttpConnectionDispatcherOptions() { AllowStatefulReconnects = true }; 2451var options = new HttpConnectionDispatcherOptions() { AllowStatefulReconnects = true };
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (1)
Startup.cs (1)
96endpoints.MapHub<TestHub>("/default", o => o.AllowStatefulReconnects = true);
1 reference to AllowStatefulReconnects
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionDispatcher.cs (1)
368if (options.AllowStatefulReconnects == true && context.Request.Query.TryGetValue("UseStatefulReconnect", out var useStatefulReconnectValue))