Discuss this help topic in SecureBlackbox Forum

TElSocket.AutoAdjustBuffersSize

TElSocket     See also     


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


Specifies whether to adjust the send and receive buffer sizes automatically.

Declaration

[C#]
    bool AutoAdjustBuffersSize;

[VB.NET]
    Property AutoAdjustBuffersSize As Boolean

[Pascal]
    property AutoAdjustBuffersSize : boolean;

[C++]
    bool get_AutoAdjustBuffersSize();
    void set_AutoAdjustBuffersSize(bool Value);

[PHP]
    bool get_AutoAdjustBuffersSize()
    void set_AutoAdjustBuffersSize(bool $Value)

[Java]
    boolean getAutoAdjustBuffersSize();
    void setAutoAdjustBuffersSize(boolean Value);

Description

    If this property is set to True, the socket's send and receive buffer sizes will be automatically adjusted by the component during the data transfer. Minimum and maximum buffer sizes can be set using the MinBufferSize and MaxBufferSize properties. Strict buffer sizes can be set via SendBufferSize and RecvBufferSize. If the strict sizes are set, AutoAdjustBuffersSize is ignored.

See also:     BuffersAdjustStep     MinBufferSize     MaxBufferSize     SendBufferSize     RecvBufferSize    

Discuss this help topic in SecureBlackbox Forum