2 instantiations of InvocationHandler
Microsoft.AspNetCore.SignalR.Client.Core (2)
HubConnection.cs (2)
362
var invocationHandler = new
InvocationHandler
(parameterTypes, handler, state);
395
var invocationHandler = new
InvocationHandler
(parameterTypes, handler, state);
13 references to InvocationHandler
Microsoft.AspNetCore.SignalR.Client.Core (13)
HubConnection.cs (13)
362
var
invocationHandler = new InvocationHandler(parameterTypes, handler, state);
395
var
invocationHandler = new InvocationHandler(parameterTypes, handler, state);
1404
foreach (
var
handler in copiedHandlers)
2026
private readonly
InvocationHandler
_handler;
2029
public Subscription(
InvocationHandler
handler, InvocationHandlerList handlerList)
2043
private readonly List<
InvocationHandler
> _invocationHandlers;
2046
private
InvocationHandler
[]? _copiedHandlers;
2048
internal InvocationHandlerList(
InvocationHandler
handler)
2050
_invocationHandlers = new List<
InvocationHandler
>() { handler };
2053
internal
InvocationHandler
[] GetHandlers()
2071
internal void Add(string methodName,
InvocationHandler
handler)
2077
foreach (
var
m in _invocationHandlers)
2090
internal void Remove(
InvocationHandler
handler)