ServiceThrottlingElement.MaxConcurrentCalls 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指定对单个服务实例进行并发调用的最大数量。
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 等效。