61 references to ConnectionOrientedTransportDefaults
System.ServiceModel (61)
System\ServiceModel\Activation\Configuration\NetPipeSection.cs (1)
67
return 2 *
ConnectionOrientedTransportDefaults
.GetMaxPendingAccepts();
System\ServiceModel\Activation\Configuration\NetTcpSection.cs (1)
89
return 2 *
ConnectionOrientedTransportDefaults
.GetMaxPendingAccepts();
System\ServiceModel\Activation\ListenerConstants.cs (2)
32
public const int SharedMaxContentTypeSize =
ConnectionOrientedTransportDefaults
.MaxContentTypeSize;
36
public const int MaxUriSize =
ConnectionOrientedTransportDefaults
.MaxViaSize;
System\ServiceModel\Channels\ConnectionOrientedTransportBindingElement.cs (12)
36
this.connectionBufferSize =
ConnectionOrientedTransportDefaults
.ConnectionBufferSize;
37
this.hostNameComparisonMode =
ConnectionOrientedTransportDefaults
.HostNameComparisonMode;
38
this.channelInitializationTimeout =
ConnectionOrientedTransportDefaults
.ChannelInitializationTimeout;
40
this.maxPendingConnections =
ConnectionOrientedTransportDefaults
.GetMaxPendingConnections();
41
this.maxOutputDelay =
ConnectionOrientedTransportDefaults
.MaxOutputDelay;
42
this.maxPendingAccepts =
ConnectionOrientedTransportDefaults
.GetMaxPendingAccepts();
43
this.transferMode =
ConnectionOrientedTransportDefaults
.TransferMode;
66
[DefaultValue(
ConnectionOrientedTransportDefaults
.ConnectionBufferSize)]
98
[DefaultValue(
ConnectionOrientedTransportDefaults
.HostNameComparisonMode)]
184
[DefaultValue(typeof(TimeSpan),
ConnectionOrientedTransportDefaults
.ChannelInitializationTimeoutString)]
211
[DefaultValue(typeof(TimeSpan),
ConnectionOrientedTransportDefaults
.MaxOutputDelayString)]
265
[DefaultValue(
ConnectionOrientedTransportDefaults
.TransferMode)]
System\ServiceModel\Channels\ConnectionOrientedTransportChannelListener.cs (3)
114
if (maxOutboundConnectionsPerEndpoint ==
ConnectionOrientedTransportDefaults
.MaxOutboundConnectionsPerEndpoint)
116
this.maxPooledConnections =
ConnectionOrientedTransportDefaults
.GetMaxConnections();
349
int maxViaSize =
ConnectionOrientedTransportDefaults
.MaxViaSize;
System\ServiceModel\Channels\InitialServerConnectionReader.cs (2)
33
ConnectionOrientedTransportDefaults
.MaxViaSize,
ConnectionOrientedTransportDefaults
.MaxContentTypeSize)
System\ServiceModel\Channels\MessageEncoder.cs (1)
54
byte[] buffer = bufferManager.TakeBuffer(
ConnectionOrientedTransportDefaults
.ConnectionBufferSize);
System\ServiceModel\Channels\NamedPipeConnectionPoolSettings.cs (3)
17
groupName =
ConnectionOrientedTransportDefaults
.ConnectionPoolGroupName;
18
idleTimeout =
ConnectionOrientedTransportDefaults
.IdleTimeout;
19
maxOutputConnectionsPerEndpoint =
ConnectionOrientedTransportDefaults
.MaxOutboundConnectionsPerEndpoint;
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
1336
IConnection connection = BuildConnectionFromData(duplicateContext,
ConnectionOrientedTransportDefaults
.ConnectionBufferSize, true);
System\ServiceModel\Channels\TcpConnectionPoolSettings.cs (3)
18
groupName =
ConnectionOrientedTransportDefaults
.ConnectionPoolGroupName;
19
idleTimeout =
ConnectionOrientedTransportDefaults
.IdleTimeout;
21
maxOutboundConnectionsPerEndpoint =
ConnectionOrientedTransportDefaults
.MaxOutboundConnectionsPerEndpoint;
System\ServiceModel\Channels\TransportSecurityHelpers.cs (2)
314
allowNtlm =
ConnectionOrientedTransportDefaults
.AllowNtlm;
640
this.allowNtlm =
ConnectionOrientedTransportDefaults
.AllowNtlm;
System\ServiceModel\Channels\WindowsStreamSecurityBindingElement.cs (2)
25
this.protectionLevel =
ConnectionOrientedTransportDefaults
.ProtectionLevel;
34
[DefaultValue(
ConnectionOrientedTransportDefaults
.ProtectionLevel)]
System\ServiceModel\Configuration\ConnectionOrientedTransportElement.cs (9)
19
[ConfigurationProperty(ConfigurationStrings.ConnectionBufferSize, DefaultValue =
ConnectionOrientedTransportDefaults
.ConnectionBufferSize)]
27
[ConfigurationProperty(ConfigurationStrings.HostNameComparisonMode, DefaultValue =
ConnectionOrientedTransportDefaults
.HostNameComparisonMode)]
35
[ConfigurationProperty(ConfigurationStrings.ChannelInitializationTimeout, DefaultValue =
ConnectionOrientedTransportDefaults
.ChannelInitializationTimeoutString)]
52
[ConfigurationProperty(ConfigurationStrings.MaxPendingConnections, DefaultValue =
ConnectionOrientedTransportDefaults
.MaxPendingConnectionsConst)]
60
[ConfigurationProperty(ConfigurationStrings.MaxOutputDelay, DefaultValue =
ConnectionOrientedTransportDefaults
.MaxOutputDelayString)]
69
[ConfigurationProperty(ConfigurationStrings.MaxPendingAccepts, DefaultValue =
ConnectionOrientedTransportDefaults
.MaxPendingAcceptsConst)]
77
[ConfigurationProperty(ConfigurationStrings.TransferMode, DefaultValue =
ConnectionOrientedTransportDefaults
.TransferMode)]
97
if (this.MaxPendingConnections !=
ConnectionOrientedTransportDefaults
.MaxPendingConnectionsConst)
102
if (this.MaxPendingAccepts !=
ConnectionOrientedTransportDefaults
.MaxPendingAcceptsConst)
System\ServiceModel\Configuration\NamedPipeConnectionPoolSettingsElement.cs (3)
20
[ConfigurationProperty(ConfigurationStrings.GroupName, DefaultValue =
ConnectionOrientedTransportDefaults
.ConnectionPoolGroupName)]
35
[ConfigurationProperty(ConfigurationStrings.IdleTimeout, DefaultValue =
ConnectionOrientedTransportDefaults
.IdleTimeoutString)]
44
[ConfigurationProperty(ConfigurationStrings.MaxOutboundConnectionsPerEndpoint, DefaultValue =
ConnectionOrientedTransportDefaults
.MaxOutboundConnectionsPerEndpoint)]
System\ServiceModel\Configuration\NetNamedPipeBindingElement.cs (3)
39
[ConfigurationProperty(ConfigurationStrings.TransferMode, DefaultValue =
ConnectionOrientedTransportDefaults
.TransferMode)]
55
[ConfigurationProperty(ConfigurationStrings.HostNameComparisonMode, DefaultValue =
ConnectionOrientedTransportDefaults
.HostNameComparisonMode)]
79
[ConfigurationProperty(ConfigurationStrings.MaxConnections, DefaultValue =
ConnectionOrientedTransportDefaults
.MaxPendingConnectionsConst)]
System\ServiceModel\Configuration\NetTcpBindingElement.cs (3)
40
[ConfigurationProperty(ConfigurationStrings.TransferMode, DefaultValue =
ConnectionOrientedTransportDefaults
.TransferMode)]
56
[ConfigurationProperty(ConfigurationStrings.HostNameComparisonMode, DefaultValue =
ConnectionOrientedTransportDefaults
.HostNameComparisonMode)]
88
[ConfigurationProperty(ConfigurationStrings.MaxConnections, DefaultValue =
ConnectionOrientedTransportDefaults
.MaxPendingConnectionsConst)]
System\ServiceModel\Configuration\TcpConnectionPoolSettingsElement.cs (3)
20
[ConfigurationProperty(ConfigurationStrings.GroupName, DefaultValue =
ConnectionOrientedTransportDefaults
.ConnectionPoolGroupName)]
44
[ConfigurationProperty(ConfigurationStrings.IdleTimeout, DefaultValue =
ConnectionOrientedTransportDefaults
.IdleTimeoutString)]
53
[ConfigurationProperty(ConfigurationStrings.MaxOutboundConnectionsPerEndpoint, DefaultValue =
ConnectionOrientedTransportDefaults
.MaxOutboundConnectionsPerEndpoint)]
System\ServiceModel\Configuration\WindowsStreamSecurityElement.cs (1)
20
[ConfigurationProperty(ConfigurationStrings.ProtectionLevel, DefaultValue =
ConnectionOrientedTransportDefaults
.ProtectionLevel)]
System\ServiceModel\NamedPipeTransportSecurity.cs (1)
23
[DefaultValue(
ConnectionOrientedTransportDefaults
.ProtectionLevel)]
System\ServiceModel\NetNamedPipeBinding.cs (2)
67
[DefaultValue(
ConnectionOrientedTransportDefaults
.TransferMode)]
74
[DefaultValue(
ConnectionOrientedTransportDefaults
.HostNameComparisonMode)]
System\ServiceModel\NetNamedPipeSecurity.cs (1)
80
if (this.transport.ProtectionLevel ==
ConnectionOrientedTransportDefaults
.ProtectionLevel)
System\ServiceModel\NetTcpBinding.cs (2)
63
[DefaultValue(
ConnectionOrientedTransportDefaults
.TransferMode)]
70
[DefaultValue(
ConnectionOrientedTransportDefaults
.HostNameComparisonMode)]