2 instantiations of InvocationHandler
Microsoft.AspNetCore.SignalR.Client.Core (2)
HubConnection.cs (2)
362var invocationHandler = new InvocationHandler(parameterTypes, handler, state); 395var invocationHandler = new InvocationHandler(parameterTypes, handler, state);
13 references to InvocationHandler
Microsoft.AspNetCore.SignalR.Client.Core (13)
HubConnection.cs (13)
362var invocationHandler = new InvocationHandler(parameterTypes, handler, state); 395var invocationHandler = new InvocationHandler(parameterTypes, handler, state); 1400foreach (var handler in copiedHandlers) 2022private readonly InvocationHandler _handler; 2025public Subscription(InvocationHandler handler, InvocationHandlerList handlerList) 2039private readonly List<InvocationHandler> _invocationHandlers; 2042private InvocationHandler[]? _copiedHandlers; 2044internal InvocationHandlerList(InvocationHandler handler) 2046_invocationHandlers = new List<InvocationHandler>() { handler }; 2049internal InvocationHandler[] GetHandlers() 2067internal void Add(string methodName, InvocationHandler handler) 2073foreach (var m in _invocationHandlers) 2086internal void Remove(InvocationHandler handler)