共用方式為


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

屬性值

Int32

可以同時讀取,而不需配置新讀取器的最大訊息數。 預設值為 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 和原始二進位的複合編碼器。 這個編碼器是由三個獨立的編碼器組成。 這個設定會影響各個獨立編碼器的讀取器數目上限。

適用於