Discuss this help topic in SecureBlackbox Forum

TElSftpClient.SynchronousMode

TElSftpClient     See also     


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


Defines whether the component works in synchronous or asynchronous mode.

Declaration

[C#]
    bool SynchronousMode;

[VB.NET]
    Property SynchronousMode As Boolean

[Pascal]
    property SynchronousMode : Boolean;

[C++]
    bool get_SynchronousMode();
    void set_SynchronousMode(bool Value);

[PHP]
    bool get_SynchronousMode()
    void set_SynchronousMode(bool $Value)

[Java]
    boolean getSynchronousMode();
    void setSynchronousMode(boolean Value);

Values:

Description

    This property specifies synchronous or asynchronous mode for operations. In synchronous mode the method returns only when the operation is completed (either successfully or with error). In asynchronous mode the method returns after the request is sent. In asynchronous mode events notify about operation completion. Note that the completion or error event can be fired before the method returns (in asynchronous mode).

See also:     LastSyncComment     LastSyncError    

Discuss this help topic in SecureBlackbox Forum