Discuss this help topic in SecureBlackbox Forum

TElSSLClient.Close

TElSSLClient     See also     


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


Gracefully closes SSL session.

Declaration

[C#]
    void Close(bool Silent);

[VB.NET]
    Sub Close(ByVal Silent As Boolean)

[Pascal]
    procedure Close(Silent : boolean = false);

[C++]
    void Close(bool Silent);

[PHP]
    void Close(bool $Silent)

[Java]
    void close(boolean Silent);

Parameters

  • Silent - specifies whether TElSSLClient should send closure notification to server

Description

    This method causes TElSSLClient to gracefully close SSL session. Call this method after application has finished using the connection and is about to close it.
    If SSL is not enabled (Enabled property is set to false), TElSSLClient does nothing and returns immediately.
    If Silent parameter is set to False, TElSSLClient sends closing notification to server.
    Set this parameter to True to prevent sending of notification packet.

See also:     Enabled     Open    

Discuss this help topic in SecureBlackbox Forum