共用方式為


ReliableSessionElement.MaxPendingChannels 屬性

定義

取得或設定可以在接聽項上等待被接受的通道數目上限。

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

屬性值

可在接聽項上等候接受的通道數目上限。 預設值為 128。

屬性

備註

這個值應為介於 1 到 16384 之間 (含 1 和 16384) 的整數。

通道在等待接受時會暫止。 一旦到達該限制,便不會建立通道。 通道反而會處於暫止模式,直到這個數字藉由接受暫止通道下降為止。 此限制適用於每個處理站。

如果到達臨界值,而且遠端應用程式嘗試建立新的可靠工作階段,則要求會被拒絕,提示這個要求的開啟作業也會發生錯誤。 這項限制不適用於暫止傳出通道的數目。

適用於