Discuss this help topic in SecureBlackbox Forum
Specifies sever supported versions
Declaration
[PHP]
integer get_Versions()
void set_Versions(integer $Value)
[Java]
short getVersions();
void setVersions(short Value);
Values:
TSBSftpVersions values
Description
Use this property to specify versions supported by server.
Example: The following shows how to set the property for different SecureBlackbox editions:
[C#]
TElSFTPSSHSubsystemHandler.Versions = SBSftpCommon.Unit.sbSFTP4 | SBSftpCommon.Unit.sbSFTP5 | SBSftpCommon.Unit.sbSFTP6;
[VB.NET]
TElSFTPSSHSubsystemHandler.Versions = SBSftpCommon.Unit.sbSFTP4 Or SBSftpCommon.Unit.sbSFTP5 Or SBSftpCommon.Unit.sbSFTP6
[Pascal]
TElSFTPSSHSubsystemHandler.Versions := sbSFTP4 or sbSFTP5 or sbSFTP6;
Discuss this help topic in SecureBlackbox Forum