SecureBlackbox 2020 .NET Edition

Questions / Feedback?

TLSShutdown Event

Reports closure of a TLS session.

Syntax

public event OnTLSShutdownHandler OnTLSShutdown;

public delegate void OnTLSShutdownHandler(object sender, HttpserverTLSShutdownEventArgs e);

public class HttpserverTLSShutdownEventArgs : EventArgs {
  public long ConnectionID { get; }
}
Public Event OnTLSShutdown As OnTLSShutdownHandler

Public Delegate Sub OnTLSShutdownHandler(sender As Object, e As HttpserverTLSShutdownEventArgs)

Public Class HttpserverTLSShutdownEventArgs Inherits EventArgs
  Public ReadOnly Property ConnectionID As Long
End Class

Remarks

The component fires this event when a connected client closes their TLS session gracefully. This event is typically followed by a Disconnect, which marks the closure of the underlying TCP session.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 .NET Edition - Version 20.0 [Build 8165]