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