5 references to _connectionLock
Microsoft.AspNetCore.SignalR.Client.Core (5)
HubConnection.cs (5)
2472
public void AssertInConnectionLock([CallerMemberName] string? memberName = null, [CallerFilePath] string? fileName = null, [CallerLineNumber] int lineNumber = 0) => SafeAssert(
_connectionLock
.CurrentCount == 0, "We're not in the Connection Lock!", memberName, fileName, lineNumber);
2484
return
_connectionLock
.WaitAsync(token);
2491
return
_connectionLock
.WaitAsync(0).Result;
2493
return
_connectionLock
.Wait(0);
2521
_connectionLock
.Release();