LoggingEventArgs Constructors

Definition

Overloads

LoggingEventArgs(String)

Initializes a new instance of the LoggingEventArgs class.

LoggingEventArgs(String, ChannelMessageKind, String)

Initializes a new instane of LoggingEventArgs class that includes the kind and source of the message

LoggingEventArgs(String)

Initializes a new instance of the LoggingEventArgs class.

public LoggingEventArgs (string message);
new Microsoft.ML.LoggingEventArgs : string -> Microsoft.ML.LoggingEventArgs
Public Sub New (message As String)

Parameters

message
String

The message being logged.

Applies to

LoggingEventArgs(String, ChannelMessageKind, String)

Initializes a new instane of LoggingEventArgs class that includes the kind and source of the message

public LoggingEventArgs (string message, Microsoft.ML.Runtime.ChannelMessageKind kind, string source);
new Microsoft.ML.LoggingEventArgs : string * Microsoft.ML.Runtime.ChannelMessageKind * string -> Microsoft.ML.LoggingEventArgs
Public Sub New (message As String, kind As ChannelMessageKind, source As String)

Parameters

message
String

The message being logged

kind
ChannelMessageKind

The type of message ChannelMessageKind

source
String

The source of the message

Applies to