Discuss this help topic in SecureBlackbox Forum

TElCustomSimpleSSLClient.SendText

TElCustomSimpleSSLClient     See also     


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


Sends a text string to the remote host.

Declaration

[C#]
    void SendText(string S);

[VB.NET]
    Sub SendText(ByVal S As String)

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

[C++]
    void SendText(const std::string &S);

[PHP]
    void SendText(string $S)

[Java]
    void sendText(String S);

Parameters

  • S -

Description

    Similarly to SendData, when an external socket is used, the client only encrypts the data. Then (in the derived classes) it fires the OnSend event, whose handler is responsible for copying the data to the external socket.

See also:     SendData    

Discuss this help topic in SecureBlackbox Forum