2 instantiations of InvocationHandler
Microsoft.AspNetCore.SignalR.Client.Core (2)
HubConnection.cs (2)
356var invocationHandler = new InvocationHandler(parameterTypes, handler, state); 389var invocationHandler = new InvocationHandler(parameterTypes, handler, state);
13 references to InvocationHandler
Microsoft.AspNetCore.SignalR.Client.Core (13)
HubConnection.cs (13)
356var invocationHandler = new InvocationHandler(parameterTypes, handler, state); 389var invocationHandler = new InvocationHandler(parameterTypes, handler, state); 1394foreach (var handler in copiedHandlers) 2016private readonly InvocationHandler _handler; 2019public Subscription(InvocationHandler handler, InvocationHandlerList handlerList) 2033private readonly List<InvocationHandler> _invocationHandlers; 2036private InvocationHandler[]? _copiedHandlers; 2038internal InvocationHandlerList(InvocationHandler handler) 2040_invocationHandlers = new List<InvocationHandler>() { handler }; 2043internal InvocationHandler[] GetHandlers() 2061internal void Add(string methodName, InvocationHandler handler) 2067foreach (var m in _invocationHandlers) 2080internal void Remove(InvocationHandler handler)