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