次の方法で共有


NetTcpBindingElement.MaxBufferSize プロパティ

定義

メッセージをメモリに保存するために使用するバッファーの最大サイズをバイト単位で指定する値を取得または設定します。

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

プロパティ値

Int32

メモリ内でメッセージの保存に使用されるバッファーの最大サイズ (バイト単位)。 既定値は 65536 です。

属性

注釈

バッファーがいっぱいの場合、超過データは、バッファーのスペースが再び空くまで、基になるソケットに残されます。

この値が MaxReceivedMessageSize の値を下回らないようにしてください。この属性の既定値も 65,536 (64 KB) です。

適用対象