Class LogMessageArgs
Structure of message body for invocation of logMessage
Inherited Members
Namespace: Quantellia.WMServer.Logger
Assembly: WMServer.dll
Syntax
public class LogMessageArgs
Properties
ApplicationModule
Module within the application logging the message
Declaration
public string ApplicationModule { get; set; }
Property Value
Type | Description |
---|---|
string |
ApplicationName
Name of the application logging the message
Declaration
public string ApplicationName { get; set; }
Property Value
Type | Description |
---|---|
string |
ApplicationVersion
Version of hte application logging the message
Declaration
public string ApplicationVersion { get; set; }
Property Value
Type | Description |
---|---|
string |
Code
Message code, such as an error code
Declaration
public string Code { get; set; }
Property Value
Type | Description |
---|---|
string |
Level
Log level. Must be one of "Information", "Warning", "Error"
Declaration
public string Level { get; set; }
Property Value
Type | Description |
---|---|
string |
Message
Message to write to the log
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string |