共用方式為


ServiceThrottlingElement.MaxConcurrentSessions 屬性

定義

取得或設定值,指定單一服務的同時連線數目上限。

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

屬性值

單一服務的同時連線數目上限。 預設值為 Int32.MaxValue

屬性

備註

服務會接受超過限制的連線。 然而,只有限制之內的通道是作用中的,且只能從作用中的通道讀取訊息。 將這個屬性設定為 0 相當於設定為 MaxValue

適用於