SecureBlackbox 2020 .NET Edition

Questions / Feedback?

Log Event

Reports a single log line.

Syntax

public event OnLogHandler OnLog;

public delegate void OnLogHandler(object sender, DcauthwebserverLogEventArgs e);

public class DcauthwebserverLogEventArgs : EventArgs {
  public long ConnectionId { get; }
  public int LogType { get; }
  public string Details { get; }
}
Public Event OnLog As OnLogHandler

Public Delegate Sub OnLogHandler(sender As Object, e As DcauthwebserverLogEventArgs)

Public Class DcauthwebserverLogEventArgs Inherits EventArgs
  Public ReadOnly Property ConnectionId As Long
  Public ReadOnly Property LogType As Integer
  Public ReadOnly Property Details As String
End Class

Remarks

This event is fired repeatedly during the component's work to inform the application about the flow of the signing process. The application may use this event to create an operation log.

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