Discuss this help topic in SecureBlackbox Forum

TElSftpSupportedExtension.IsSupportedBlockMode

TElSftpSupportedExtension     See also     


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


Verifies if specified block modes combination is supported by server.

Declaration

[C#/Java]
    bool IsSupportedBlockMode(TSBSftpFileOpenAccess Mode);
    
    TSBSftpFileOpenAccess = int;
    TSBSftpFileOpenAccess represents a bit mask which contains zero or more bit flags as defined by TSBSftpFileOpenAccessItem

[VB.NET]
    Function IsSupportedBlockMode(ByVal Mode As TSBSftpFileOpenAccess) As Boolean
    
    TSBSftpFileOpenAccess As Integer
    TSBSftpFileOpenAccess represents a bit mask which contains zero or more bit flags as defined by TSBSftpFileOpenAccessItem

[Pascal]
    function IsSupportedBlockMode(Mode : TSBSftpFileOpenAccess) : boolean;
    TSBSftpFileOpenAccess = set of TSBSftpFileOpenAccessItem;

[C++]
    bool IsSupportedBlockMode(TSBSftpFileOpenAccess Mode);

[PHP]
    bool IsSupportedBlockMode(integer $Mode)

Parameters

  • Mode - block modes combination to be verified

Mode values:


Return value

     True if specified mode is supported by server,
     False otherwise

Description

    Use this method to verify if block modes combination is supported by server for Block command.

Discuss this help topic in SecureBlackbox Forum