共用方式為


ReliableSessionElement.MaxTransferWindowSize 屬性

定義

取得或設定緩衝區的大小上限。

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

屬性值

Int32

緩衝區大小上限。 有效值為 1 到 4096 (含 1 和 4096)。

屬性

備註

在用戶端上,這個屬性會定義可靠通道用來保留收件者尚未認可之訊息的緩衝區大小上限。 配額是以訊息做為單位計算。 如果緩衝區已滿,則會封鎖其他傳送作業。

在接收者上,這個屬性會定義通道用來存放尚未分派到應用程式之傳入訊息的最大緩衝區大小。 如果緩衝區已滿,接收者會在沒有通知的情況下捨棄其他訊息,而且需要用戶端重新傳輸訊息。

適用於