EDI Integrator 2016 .NET Edition
EDI Integrator 2016 .NET Edition
Questions / Feedback?

Log Event

Provides logging information.

Syntax

[VB.NET]
Public Event OnLog As OnLogHandler
[C#]
public event OnLogHandler OnLog;

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

class MllpserverLogEventArgs : EventArgs {
  string ConnectionId {get;}
  int LogLevel {get;}
  string Message {get;}
  string LogType {get;}
}

Remarks

This event fires when processing messages and provides logging information. The LogLevel configuration setting specifies the level of detail that is logged.

ConnectionId reflects the Id of the connection to which the log message pertains.

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

  • INFO
  • VERBOSE
  • DEBUG

LogMessage is the log message.

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
EDI Integrator 2016 .NET Edition - Version 16.0 [Build 7362]