ServiceThrottlingElement.MaxConcurrentCalls 属性

定义

获取或设置一个值,该值指定对单个服务实例进行并发调用的最大数量。

public:
 property int MaxConcurrentCalls { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxConcurrentCalls", DefaultValue=16)]
[System.Configuration.IntegerValidator(MinValue=1)]
public int MaxConcurrentCalls { get; set; }
[<System.Configuration.ConfigurationProperty("maxConcurrentCalls", DefaultValue=16)>]
[<System.Configuration.IntegerValidator(MinValue=1)>]
member this.MaxConcurrentCalls : int with get, set
Public Property MaxConcurrentCalls As Integer

属性值

对单个服务实例进行的最大并发调用数。 默认值为 Int32.MaxValue

属性

注解

超出此限制的调用将在队列中排队。 将此值设置为 0 与将其设置为 MaxValue 等效。

适用于