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); 1404foreach (var handler in copiedHandlers) 2026private readonly InvocationHandler _handler; 2029public Subscription(InvocationHandler handler, InvocationHandlerList handlerList) 2043private readonly List<InvocationHandler> _invocationHandlers; 2046private InvocationHandler[]? _copiedHandlers; 2048internal InvocationHandlerList(InvocationHandler handler) 2050_invocationHandlers = new List<InvocationHandler>() { handler }; 2053internal InvocationHandler[] GetHandlers() 2071internal void Add(string methodName, InvocationHandler handler) 2077foreach (var m in _invocationHandlers) 2090internal void Remove(InvocationHandler handler)