Discuss this help topic in SecureBlackbox Forum

TElSocket.MinBufferSize

TElSocket     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies minimum send and receive buffer sizes.

Declaration

[C#]
    int MinBufferSize;

[VB.NET]
    Property MinBufferSize As Integer

[Pascal]
    property MinBufferSize : integer;

[C++]
    int32_t get_MinBufferSize();
    void set_MinBufferSize(int32_t Value);

[PHP]
    integer get_MinBufferSize()
    void set_MinBufferSize(integer $Value)

[Java]
    int getMinBufferSize();
    void setMinBufferSize(int Value);

Description

    Use this property to set the minimal buffer size, and MaxBufferSize to set the maximal buffer size. Strict buffer sizes can be set via SendBufferSize and RecvBufferSize.
    The default value is 8192 (8 kB).

See also:     AutoAdjustBuffersSize     MaxBufferSize     SendBufferSize     RecvBufferSize    

Discuss this help topic in SecureBlackbox Forum