Log Event

Provides logging information.

Syntax

public event OnLogHandler OnLog;

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

public class PdfxmlLogEventArgs : EventArgs {
  public string LogType { get; }
  public string LogMessage { get; }
}
Public Event OnLog As OnLogHandler

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

Public Class PdfxmlLogEventArgs Inherits EventArgs
  Public ReadOnly Property LogType As String
  Public ReadOnly Property LogMessage As String
End Class

Remarks

This event fires when processing messages and provides logging information. LogLevel defines the level of detail that is logged.

LogType specifies the type of log message. Possible values are:

  • ERROR
  • INFO
  • DEBUG

LogMessage is the log message.

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks EDI 2020 .NET Edition - Version 20.0 [Build 7941]