8 references to MaxPendingAccepts
System.ServiceModel (8)
System\ServiceModel\Configuration\ConnectionOrientedTransportElement.cs (4)
69
[ConfigurationProperty(ConfigurationStrings.
MaxPendingAccepts
, DefaultValue = ConnectionOrientedTransportDefaults.MaxPendingAcceptsConst)]
73
get { return (int)base[ConfigurationStrings.
MaxPendingAccepts
]; }
74
set { base[ConfigurationStrings.
MaxPendingAccepts
] = value; }
141
ConfigurationProperty maxPendingAcceptsProperty = this.Properties[ConfigurationStrings.
MaxPendingAccepts
];
System\ServiceModel\Configuration\HttpTransportElement.cs (4)
93
[ConfigurationProperty(ConfigurationStrings.
MaxPendingAccepts
, DefaultValue = HttpTransportDefaults.DefaultMaxPendingAccepts)]
97
get { return (int)base[ConfigurationStrings.
MaxPendingAccepts
]; }
98
set { base[ConfigurationStrings.
MaxPendingAccepts
] = value; }
251
SetPropertyValueIfNotDefaultValue(ConfigurationStrings.
MaxPendingAccepts
, source.MaxPendingAccepts);