2 instantiations of InvocationHandlerList
Microsoft.AspNetCore.SignalR.Client.Core (2)
HubConnection.cs (2)
371var invocationList = _handlers.AddOrUpdate(methodName, _ => new InvocationHandlerList(invocationHandler), 404var invocationList = _handlers.AddOrUpdate(methodName, _ => new InvocationHandlerList(invocationHandler),
8 references to InvocationHandlerList
Microsoft.AspNetCore.SignalR.Client.Core (8)
HubConnection.cs (8)
85private readonly ConcurrentDictionary<string, InvocationHandlerList> _handlers = new ConcurrentDictionary<string, InvocationHandlerList>(StringComparer.Ordinal); 371var invocationList = _handlers.AddOrUpdate(methodName, _ => new InvocationHandlerList(invocationHandler), 404var invocationList = _handlers.AddOrUpdate(methodName, _ => new InvocationHandlerList(invocationHandler), 1552if (!_handlers.TryGetValue(invocation.Target, out var invocationHandlerList)) 2201private readonly InvocationHandlerList _handlerList; 2203public Subscription(InvocationHandler handler, InvocationHandlerList handlerList) 2607if (!_hubConnection._handlers.TryGetValue(methodName, out var invocationHandlerList))