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 の範囲の整数にする必要があります。

チャネルは、受け入れられるのを待っているときに保留中です。 その制限に達すると、チャネルは作成されません。 むしろ、この数が(保留中のチャネルを受け入れることによって)ダウンするまで、彼らは保留中のモードに入れられます。 この制限は各ファクトリに対して行います。

しきい値に達し、リモート アプリケーションが新しい信頼できるセッションを確立しようとすると、要求が拒否され、このエラーを求めるオープン操作が実行されます。 この制限は、保留中の送信チャネルの数には適用されません。

適用対象