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