2 instantiations of InvocationHandler
Microsoft.AspNetCore.SignalR.Client.Core (2)
HubConnection.cs (2)
370
var invocationHandler = new
InvocationHandler
(parameterTypes, handler, state);
403
var invocationHandler = new
InvocationHandler
(parameterTypes, handler, state);
13 references to InvocationHandler
Microsoft.AspNetCore.SignalR.Client.Core (13)
HubConnection.cs (13)
370
var
invocationHandler = new InvocationHandler(parameterTypes, handler, state);
403
var
invocationHandler = new InvocationHandler(parameterTypes, handler, state);
1578
foreach (
var
handler in copiedHandlers)
2200
private readonly
InvocationHandler
_handler;
2203
public Subscription(
InvocationHandler
handler, InvocationHandlerList handlerList)
2217
private readonly List<
InvocationHandler
> _invocationHandlers;
2220
private
InvocationHandler
[]? _copiedHandlers;
2222
internal InvocationHandlerList(
InvocationHandler
handler)
2224
_invocationHandlers = new List<
InvocationHandler
>() { handler };
2227
internal
InvocationHandler
[] GetHandlers()
2245
internal void Add(string methodName,
InvocationHandler
handler)
2251
foreach (
var
m in _invocationHandlers)
2264
internal void Remove(
InvocationHandler
handler)