NetTcpBinding.MaxBufferPoolSize Property

Definition

Gets or sets the maximum size, in bytes, allowed for a buffer pool that stores TCP messages processed by the binding.

public:
 property long MaxBufferPoolSize { long get(); void set(long value); };
public long MaxBufferPoolSize { get; set; }
member this.MaxBufferPoolSize : int64 with get, set
Public Property MaxBufferPoolSize As Long

Property Value

The maximum size allowed for a buffer pool that stores TCP messages processed by the binding. The default value is 524,288 bytes.

Examples

This example shows how to get the MaxBufferPoolSize value.

long maxBufferPoolsize = binding.MaxBufferPoolSize;

Remarks

If you receive more data than you can buffer, the data that exceeds the buffer size remains on the underlying socket until your buffer has room for the rest of the data.

Applies to