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