12 writes to MaximumParallelInvocationsPerClient
Microsoft.AspNetCore.SignalR.Core (1)
HubOptionsSetup`T.cs (1)
39options.MaximumParallelInvocationsPerClient = _hubOptions.MaximumParallelInvocationsPerClient;
Microsoft.AspNetCore.SignalR.Tests (11)
AddSignalRTests.cs (2)
149options.MaximumParallelInvocationsPerClient = 3; 196Assert.Throws<ArgumentOutOfRangeException>(() => new HubOptions() { MaximumParallelInvocationsPerClient = 0 });
HubConnectionHandlerTests.ClientResult.cs (1)
235builder.AddSignalR(o => o.MaximumParallelInvocationsPerClient = 2);
HubConnectionHandlerTests.cs (8)
3015options.MaximumParallelInvocationsPerClient = 1; 3074options.MaximumParallelInvocationsPerClient = 2; 3180options.MaximumParallelInvocationsPerClient = 1; 3327options.MaximumParallelInvocationsPerClient = 1; 3382options.MaximumParallelInvocationsPerClient = 2; 3438options.MaximumParallelInvocationsPerClient = 2; 3509options.MaximumParallelInvocationsPerClient = 1; 3769services.AddSignalR(options => options.MaximumParallelInvocationsPerClient = 1);
6 references to MaximumParallelInvocationsPerClient
Microsoft.AspNetCore.SignalR.Core (3)
HubConnectionHandler.cs (2)
74_maxParallelInvokes = _hubOptions.MaximumParallelInvocationsPerClient; 87_maxParallelInvokes = _globalHubOptions.MaximumParallelInvocationsPerClient;
HubOptionsSetup`T.cs (1)
39options.MaximumParallelInvocationsPerClient = _hubOptions.MaximumParallelInvocationsPerClient;
Microsoft.AspNetCore.SignalR.Tests (3)
AddSignalRTests.cs (3)
113Assert.Equal(globalHubOptions.MaximumParallelInvocationsPerClient, hubOptions.MaximumParallelInvocationsPerClient); 163Assert.Equal(3, globalOptions.MaximumParallelInvocationsPerClient);