Discuss this help topic in SecureBlackbox Forum

TElFTPSServerMessageTable.GetMessage

TElFTPSServerMessageTable     See also     


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


Retrieves server's message associated with a code.

Declaration

[C#]
    string GetMessage(int Code, string Command);

[VB.NET]
    Function GetMessage(ByVal Code As Integer, ByVal Command As String) As String

[Pascal]
    function GetMessage(Code : integer; const Command : string) : string;

[C++]
    void GetMessage(int32_t Code, const std::string &Command, std::string &OutResult);

[PHP]
    string GetMessage(integer $Code, string $Command)

[Java]
    String getMessage(int Code, String Command);

Parameters

  • Code - code for which the reply message is requested
  • Command - command to which the reply message (and code) is intended

Description

    Use this method to check the server's reply message by its code. Use SetMessage to change the message.

See also:     SetMessage    

Discuss this help topic in SecureBlackbox Forum