WebMessageEncodingElement.MaxReadPoolSize プロパティ

定義

新しいリーダーを割り当てずに同時に読み取り可能なメッセージの最大数を指定する値を取得または設定します。

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

プロパティ値

新しいリーダーを割り当てずに同時に読み取ることができるメッセージの最大数。 既定値は、64 です。

属性

static void Main(string[] args)  
{  
    WebMessageEncodingElement webMEE = new WebMessageEncodingElement();  
    int maxReadPoolSize = webMEE.MaxReadPoolSize;  
    Console.WriteLine("The MaxReadPoolSize is: {0}", maxReadPoolSize);  
    maxReadPoolSize = 128;  
    Console.WriteLine("The MaxReadPoolSize has been changed to: {0}", maxReadPoolSize);  
}  

注釈

プール サイズを大きくすると、システムでは、比較的大きい作業セットで、アクティビティの急増に対する許容度が高まります。 WebMessageEncodingElement は、プレーンテキストの XML、JSON、および生のバイナリの読み取りと書き込みができる複合エンコーダーを構成します。 このエンコーダーは、3 つの独立したエンコーダーから構成されます。 この設定は、個々のエンコーダーのリーダーの最大数に影響します。

適用対象