2 instantiations of InvocationHandler
Microsoft.AspNetCore.SignalR.Client.Core (2)
HubConnection.cs (2)
370var invocationHandler = new InvocationHandler(parameterTypes, handler, state); 403var invocationHandler = new InvocationHandler(parameterTypes, handler, state);
13 references to InvocationHandler
Microsoft.AspNetCore.SignalR.Client.Core (13)
HubConnection.cs (13)
370var invocationHandler = new InvocationHandler(parameterTypes, handler, state); 403var invocationHandler = new InvocationHandler(parameterTypes, handler, state); 1578foreach (var handler in copiedHandlers) 2200private readonly InvocationHandler _handler; 2203public Subscription(InvocationHandler handler, InvocationHandlerList handlerList) 2217private readonly List<InvocationHandler> _invocationHandlers; 2220private InvocationHandler[]? _copiedHandlers; 2222internal InvocationHandlerList(InvocationHandler handler) 2224_invocationHandlers = new List<InvocationHandler>() { handler }; 2227internal InvocationHandler[] GetHandlers() 2245internal void Add(string methodName, InvocationHandler handler) 2251foreach (var m in _invocationHandlers) 2264internal void Remove(InvocationHandler handler)