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