-
Notifications
You must be signed in to change notification settings - Fork 25.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.WithStatefulReconnect #32493
Comments
Hello @troubleshootdoc ... BTW, it's best to open issues here via the Open a documentation issue link at the bottom of an article, such as in the case from the bottom of the Blazor Fundamentals > SignalR article. Anyway ... your question is best for the product unit to address, so open an issue for them here ... https://github.com/dotnet/aspnetcore/issues Please add ...
... to the bottom of your opening comment so that I can follow along. I might re-open this for doc work depending on what they say. |
Re-opening to add a NOTE that it isn't supported yet per ... ... and a tracking item to back it out later when support arrives. |
Issue description
I have a blazor wasm (client model) only. We want to use SignalR serverless and Azure function as the Hub. If we want to use the .WithStatefulReconnect , can we do it using a blazor wasm client only application if our hub is an azure function? Is there something I would have to change in the signalr service (in serverless mode)
The blazor client would use this instead of WithAutomaticReconnect().
hubConnection = new HubConnectionBuilder()
.WithUrl(functionAppBaseUri, options =>
{
}).WithStatefulReconnect().Build();
Software versions
.NET 8
The text was updated successfully, but these errors were encountered: