2 instantiations of InvocationHandlerList
Microsoft.AspNetCore.SignalR.Client.Core (2)
HubConnection.cs (2)
393
var invocationList = _handlers.AddOrUpdate(methodName, _ => new
InvocationHandlerList
(invocationHandler),
426
var invocationList = _handlers.AddOrUpdate(methodName, _ => new
InvocationHandlerList
(invocationHandler),
8 references to InvocationHandlerList
Microsoft.AspNetCore.SignalR.Client.Core (8)
HubConnection.cs (8)
86
private readonly ConcurrentDictionary<string,
InvocationHandlerList
> _handlers = new ConcurrentDictionary<string,
InvocationHandlerList
>(StringComparer.Ordinal);
393
var
invocationList = _handlers.AddOrUpdate(methodName, _ => new InvocationHandlerList(invocationHandler),
426
var
invocationList = _handlers.AddOrUpdate(methodName, _ => new InvocationHandlerList(invocationHandler),
1686
if (!_handlers.TryGetValue(invocation.Target, out
var
invocationHandlerList))
2316
private readonly
InvocationHandlerList
_handlerList;
2318
public Subscription(InvocationHandler handler,
InvocationHandlerList
handlerList)
2722
if (!_hubConnection._handlers.TryGetValue(methodName, out
var
invocationHandlerList))