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);
1400
foreach (
var
handler in copiedHandlers)
2022
private readonly
InvocationHandler
_handler;
2025
public Subscription(
InvocationHandler
handler, InvocationHandlerList handlerList)
2039
private readonly List<
InvocationHandler
> _invocationHandlers;
2042
private
InvocationHandler
[]? _copiedHandlers;
2044
internal InvocationHandlerList(
InvocationHandler
handler)
2046
_invocationHandlers = new List<
InvocationHandler
>() { handler };
2049
internal
InvocationHandler
[] GetHandlers()
2067
internal void Add(string methodName,
InvocationHandler
handler)
2073
foreach (
var
m in _invocationHandlers)
2086
internal void Remove(
InvocationHandler
handler)