3 writes to MaxOutboundConnectionsPerEndpoint
System.ServiceModel.NetTcp (1)
System\ServiceModel\NetTcpBinding.cs (1)
59set { _transport.ConnectionPoolSettings.MaxOutboundConnectionsPerEndpoint = value; }
System.ServiceModel.NetTcp.Tests (2)
Channels\TcpConnectionPoolSettingsTest.cs (2)
85settings.MaxOutboundConnectionsPerEndpoint = value; 96Assert.Throws<ArgumentOutOfRangeException>(() => settings.MaxOutboundConnectionsPerEndpoint = value);
3 references to MaxOutboundConnectionsPerEndpoint
System.ServiceModel.NetTcp (2)
System\ServiceModel\Channels\TcpChannelFactory.cs (1)
15bindingElement.ConnectionPoolSettings.MaxOutboundConnectionsPerEndpoint)
System\ServiceModel\NetTcpBinding.cs (1)
58get { return _transport.ConnectionPoolSettings.MaxOutboundConnectionsPerEndpoint; }
System.ServiceModel.NetTcp.Tests (1)
Channels\TcpConnectionPoolSettingsTest.cs (1)
86Assert.Equal<int>(value, settings.MaxOutboundConnectionsPerEndpoint);