2 instantiations of InvocationHandler
Microsoft.AspNetCore.SignalR.Client.Core (2)
HubConnection.cs (2)
392var invocationHandler = new InvocationHandler(parameterTypes, handler, state); 425var invocationHandler = new InvocationHandler(parameterTypes, handler, state);
13 references to InvocationHandler
Microsoft.AspNetCore.SignalR.Client.Core (13)
HubConnection.cs (13)
392var invocationHandler = new InvocationHandler(parameterTypes, handler, state); 425var invocationHandler = new InvocationHandler(parameterTypes, handler, state); 1712foreach (var handler in copiedHandlers) 2315private readonly InvocationHandler _handler; 2318public Subscription(InvocationHandler handler, InvocationHandlerList handlerList) 2332private readonly List<InvocationHandler> _invocationHandlers; 2335private InvocationHandler[]? _copiedHandlers; 2337internal InvocationHandlerList(InvocationHandler handler) 2339_invocationHandlers = new List<InvocationHandler>() { handler }; 2342internal InvocationHandler[] GetHandlers() 2360internal void Add(string methodName, InvocationHandler handler) 2366foreach (var m in _invocationHandlers) 2379internal void Remove(InvocationHandler handler)