Class ResponseLogEntry
Any message (errors, information messages, etc.) to be returned in the work response.
public class ResponseLogEntry
- Inheritance
-
ResponseLogEntry
Constructors
ResponseLogEntry()
public ResponseLogEntry()
ResponseLogEntry(LogEntryLevel, string)
public ResponseLogEntry(LogEntryLevel logLevel, string message)
Parameters
logLevel
LogEntryLevelmessage
string
ResponseLogEntry(LogEntryLevel, string, Exception)
public ResponseLogEntry(LogEntryLevel logLevel, string message, Exception e)
Parameters
logLevel
LogEntryLevelmessage
stringe
Exception
ResponseLogEntry(LogEntryLevel, string, string)
public ResponseLogEntry(LogEntryLevel logLevel, string message, string details)
Parameters
logLevel
LogEntryLevelmessage
stringdetails
string
Properties
Details
Any additional details.
public string Details { get; set; }
Property Value
Level
Log level of the message.
public LogEntryLevel Level { get; set; }
Property Value
Message
Primary message string.
public string Message { get; set; }