Wade Pickett
Wade Pickett
Thanks! One more question: `ConnectWithRetryAsync(HubConnection connection, CancellationToken token)` takes a CancellationToken. Where exactly in the entire process is the CancellationToken expected to have been created in this case?
> Probably when they call the method The client JavaScript would not create and pass a `CancellationToken`, so I was confused about where it was coming from, unless it was...
I will briefly explain what the ! operator is doing there since this is a getting started tutorial and it is a relatively new feature.
Holding off on reQuest label until I hear what labels we are to use for these and where/how we want them tracked in DevOps.
@branden-jones, thanks for taking the time to relate your experience with this doc. I will retest the series! A couple of questions: 1. Were you following the Visual Studio instruction...
@JamesNK, could you take a look to verify if anything needs to change here? The central idea behind the client code example was that the client sample could be consumed...
@Drapondur, thanks for the suggestion!
@CePur, thanks for taking the time to let us know your experience with this doc. I will cue this doc up to be retested. In the meantime, it would be...
Thanks for the insight!
@BrennanConroy With the following set in Program.CS for stateful reconnect: `builder.Services.AddSignalR(o => o.StatefulReconnectBufferSize = 1000);` and ``` app.MapHub("/chatHub", options => { options.AllowStatefulReconnects = true; });` ``` The example we had...