HttpBinding.MaxBufferPoolSize Property

 

Gets or sets the maximum amount of memory allocated for the buffer manager that manages the buffers required by endpoints that use this binding.

Namespace:   System.Web.Http.SelfHost.Channels
Assembly:  System.Web.Http.SelfHost (in System.Web.Http.SelfHost.dll)

Syntax

[DefaultValueAttribute(524288)]
public long MaxBufferPoolSize { get; set; }
public:
[DefaultValueAttribute(524288)]
property long long MaxBufferPoolSize {
    long long get();
    void set(long long value);
}
[<DefaultValueAttribute(524288)>]
member MaxBufferPoolSize : int64 with get, set
<DefaultValueAttribute(524288)>
Public Property MaxBufferPoolSize As Long

Property Value

Type: System.Int64

The maximum size, in bytes, for the pool of buffers used by an endpoint configured with this binding.

See Also

HttpBinding Class
System.Web.Http.SelfHost.Channels Namespace

Return to top