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 和原始二进制文件的复合编码器。 此编码器由三个独立的编码器组成。 此设置会影响每个独立编码器的最大读取器数。

适用于