1 implementation of GetConnectionPoolSetting
System.ServiceModel.UnixDomainSocket (1)
System\ServiceModel\Channels\UnixDomainSocketChannelFactory.cs (1)
68
T IConnectionPoolSettings.
GetConnectionPoolSetting
<T>(string settingName)
7 references to GetConnectionPoolSetting
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\ConnectionPoolRegistry.cs (1)
69
TimeSpan poolLeaseTimeout = connectionPoolSettings.
GetConnectionPoolSetting
<TimeSpan>("LeaseTimeout");
System.ServiceModel.UnixDomainSocket (6)
System\ServiceModel\Channels\UnixDomainSocketChannelFactory.cs (6)
127
return (LeaseTimeout == other.
GetConnectionPoolSetting
<TimeSpan>(nameof(LeaseTimeout))) &&
128
(ConnectionPoolGroupName == other.
GetConnectionPoolSetting
<string>(nameof(ConnectionPoolGroupName))) &&
129
(ConnectionBufferSize == other.
GetConnectionPoolSetting
<int>(nameof(ConnectionBufferSize))) &&
130
(MaxOutboundConnectionsPerEndpoint == other.
GetConnectionPoolSetting
<int>(nameof(MaxOutboundConnectionsPerEndpoint))) &&
131
(IdleTimeout == other.
GetConnectionPoolSetting
<TimeSpan>(nameof(IdleTimeout))) &&
132
(MaxOutputDelay == other.
GetConnectionPoolSetting
<TimeSpan>(nameof(MaxOutputDelay)));