1 implementation of InvokeMethodAsync
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubFilterFactory.cs (1)
22public async ValueTask<object?> InvokeMethodAsync(HubInvocationContext invocationContext, Func<HubInvocationContext, ValueTask<object?>> next)
2 references to InvokeMethodAsync
Microsoft.AspNetCore.SignalR.Core (2)
Internal\DefaultHubDispatcher.cs (1)
72_invokeMiddleware = (context) => resolvedFilter.InvokeMethodAsync(context, nextFilter);
Internal\HubFilterFactory.cs (1)
28return await filter.InvokeMethodAsync(invocationContext, next);