18 references to TcpTransportDefaults
System.ServiceModel (18)
System\ServiceModel\Activation\Configuration\NetTcpSection.cs (1)
59
return
TcpTransportDefaults
.GetListenBacklog();
System\ServiceModel\Activation\ListenerConstants.cs (1)
13
public const int DefaultListenBacklog =
TcpTransportDefaults
.ListenBacklogConst;
System\ServiceModel\Channels\TcpConnectionPoolSettings.cs (1)
20
leaseTimeout =
TcpTransportDefaults
.ConnectionLeaseTimeout;
System\ServiceModel\Channels\TcpTransportBindingElement.cs (5)
29
this.listenBacklog =
TcpTransportDefaults
.GetListenBacklog();
30
this.portSharingEnabled =
TcpTransportDefaults
.PortSharingEnabled;
31
this.teredoEnabled =
TcpTransportDefaults
.TeredoEnabled;
78
[DefaultValue(
TcpTransportDefaults
.PortSharingEnabled)]
97
[DefaultValue(
TcpTransportDefaults
.TeredoEnabled)]
System\ServiceModel\Channels\TransportDefaults.cs (1)
294
internal static TimeSpan ConnectionLeaseTimeout { get { return TimeSpanHelper.FromMinutes(5,
TcpTransportDefaults
.ConnectionLeaseTimeoutString); } }
System\ServiceModel\Configuration\NetTcpBindingElement.cs (3)
64
[ConfigurationProperty(ConfigurationStrings.ListenBacklog, DefaultValue =
TcpTransportDefaults
.ListenBacklogConst)]
104
[ConfigurationProperty(ConfigurationStrings.PortSharingEnabled, DefaultValue =
TcpTransportDefaults
.PortSharingEnabled)]
165
if (this.ListenBacklog !=
TcpTransportDefaults
.ListenBacklogConst)
System\ServiceModel\Configuration\TcpConnectionPoolSettingsElement.cs (1)
35
[ConfigurationProperty(ConfigurationStrings.LeaseTimeout, DefaultValue =
TcpTransportDefaults
.ConnectionLeaseTimeoutString)]
System\ServiceModel\Configuration\TcpTransportElement.cs (4)
25
if (this.ListenBacklog !=
TcpTransportDefaults
.ListenBacklogConst)
75
[ConfigurationProperty(ConfigurationStrings.ListenBacklog, DefaultValue =
TcpTransportDefaults
.ListenBacklogConst)]
83
[ConfigurationProperty(ConfigurationStrings.PortSharingEnabled, DefaultValue =
TcpTransportDefaults
.PortSharingEnabled)]
90
[ConfigurationProperty(ConfigurationStrings.TeredoEnabled, DefaultValue =
TcpTransportDefaults
.TeredoEnabled)]
System\ServiceModel\NetTcpBinding.cs (1)
127
[DefaultValue(
TcpTransportDefaults
.PortSharingEnabled)]