1 write to HubMethodArguments
Microsoft.AspNetCore.SignalR.Core (1)
HubInvocationContext.cs (1)
29HubMethodArguments = hubMethodArguments;
6 references to HubMethodArguments
Microsoft.AspNetCore.SignalR.Core (2)
Internal\DefaultHubDispatcher.cs (2)
57var arguments = invocationContext.HubMethodArguments as object?[] ?? invocationContext.HubMethodArguments.ToArray();
Microsoft.AspNetCore.SignalR.Tests (4)
HubConnectionHandlerTests.cs (3)
2311Assert.Equal(2, resource.HubMethodArguments?.Count); 2312Assert.Equal("Hello", resource.HubMethodArguments[0]); 2313Assert.Equal("World!", resource.HubMethodArguments[1]);
TestFilters.cs (1)
232var context = new HubInvocationContext(invocationContext.Context, invocationContext.ServiceProvider, invocationContext.Hub, methodInfo, invocationContext.HubMethodArguments);