Discuss this help topic in SecureBlackbox Forum

TElSftpSupportedExtension.SetSupportedOpenBlockMode

TElSftpSupportedExtension     See also     


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


Sets combination of supported file access modes for file opening

Declaration

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

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

[Pascal]
    procedure SetSupportedOpenBlockMode(Mode : TSBSftpFileOpenAccess; Supported : boolean);
    TSBSftpFileOpenAccess = set of TSBSftpFileOpenAccessItem;

[C++]
    void SetSupportedOpenBlockMode(TSBSftpFileOpenAccess Mode, bool Supported);

[PHP]
    void SetSupportedOpenBlockMode(integer $Mode, bool $Supported)

Parameters

  • Mode - modes combination to be set
  • Supported - if specified modes combination is supported

Mode values:


Description

    Use this method to set supported file access modes combination for file opening.

See also:     IsSupportedBlockMode     IsSupportedOpenBlockMode     SetSupportedBlockMode    

Discuss this help topic in SecureBlackbox Forum