You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public async Task MyRestCallHandler{
var result = await CalcResult();
await hub.Clients.SendAsync(...);
return result;
}
And if I don't wrap call to the hub into try-catch, the client gets 500 error, although the operation was generally ok. Sometimes client is an automated test which fails and gives a false alarm. All samples I find do not care for exceptions handling when contacting signalr.
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: