6 writes to DisableImplicitFromServicesParameters
Microsoft.AspNetCore.SignalR.Core (1)
HubOptionsSetup`T.cs (1)
40options.DisableImplicitFromServicesParameters = _hubOptions.DisableImplicitFromServicesParameters;
Microsoft.AspNetCore.SignalR.Tests (5)
AddSignalRTests.cs (1)
150options.DisableImplicitFromServicesParameters = true;
HubConnectionHandlerTests.cs (4)
4754options.DisableImplicitFromServicesParameters = true; 4818options.DisableImplicitFromServicesParameters = true; 4821options.DisableImplicitFromServicesParameters = false; 4843options.DisableImplicitFromServicesParameters = true;
6 references to DisableImplicitFromServicesParameters
Microsoft.AspNetCore.SignalR.Core (3)
HubConnectionHandler.cs (2)
75disableImplicitFromServiceParameters = _hubOptions.DisableImplicitFromServicesParameters; 88disableImplicitFromServiceParameters = _globalHubOptions.DisableImplicitFromServicesParameters;
HubOptionsSetup`T.cs (1)
40options.DisableImplicitFromServicesParameters = _hubOptions.DisableImplicitFromServicesParameters;
Microsoft.AspNetCore.SignalR.Tests (3)
AddSignalRTests.cs (3)
114Assert.Equal(globalHubOptions.DisableImplicitFromServicesParameters, hubOptions.DisableImplicitFromServicesParameters); 165Assert.True(globalOptions.DisableImplicitFromServicesParameters);