TextMessageEncodingElement.MaxWritePoolSize Property

Definition

Gets or sets a value that specifies the maximum number of messages that can be sent simultaneously without allocating new writers.

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

Property Value

The maximum number of messages that can be sent simultaneously without allocating new writers. The default is 16.

Attributes

Remarks

Larger pool sizes make the system more tolerant to activity spikes at the cost of a larger working set.

Applies to