Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Microsoft.Azure.SignalR/ServiceOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,13 @@ public int ConnectionCount
public Func<HttpContext, HttpTransportType> TransportTypeDetector { get; set; } = null;

/// <summary>
/// Allow clients enable stateful reconnects for connecting to service.
/// Allow clients enable stateful reconnects for all hubs.
/// By default is disabled.
/// It can also be configurate <see cref="HttpConnectionDispatcherOptions"/> by hub in net 8.
/// It can also configurate <see cref="HttpConnectionDispatcherOptions"/> by hub in net 8.
/// Enable stateful reconnection in client side:
/// * Make sure client sdk is net8 or later.
/// * Enable stateful reconnect: <code>builder.withStatefulReconnect()</code>
/// * Enable stateful reconnect in client side, e.g.: <code>builder.withStatefulReconnect()</code>
/// </summary>
internal bool? AllowStatefulReconnects { get; set; }
public bool? AllowStatefulReconnects { get; set; }
}
}