Discuss this help topic in SecureBlackbox Forum

TElSSLClient.SendText

TElSSLClient     See also     


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


Sends the text string to the remote host.

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    procedure SendText(const S : string);

[C++]
    void SendText(const std::vector<uint8_t> &S);

[PHP]
    void SendText(array of byte|string|NULL $S)

[Java]
    not available

Parameters

  • S - text to send

Description

    Use this method to send the text string to the server. TElSSLClient encrypts the data (if Enabled property is true) and then fires OnSend event to write the encrypted block to the socket.
    The application needs to write the data to the socket only in OnSend event handler.

See also:     Enabled     TElSSLClass.OnSend     SendData    

Discuss this help topic in SecureBlackbox Forum