Discuss this help topic in SecureBlackbox Forum

TElSSLServer.Close

TElSSLServer     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 - True - TElSSLServer will not send disconnection notification to client. False - notification will be sent.
    Default value is False

Description

    This method causes TElSSLServer 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), TElSSLServer does nothing and returns immediately.

See also:     Enabled     Open    

Discuss this help topic in SecureBlackbox Forum