Class ResponseLogEntry
Any message (errors, information messages, etc.) to be returned in the work response.
public class ResponseLogEntry
- Inheritance
-
objectResponseLogEntry
- Extension Methods
Constructors
ResponseLogEntry()
public ResponseLogEntry()
ResponseLogEntry(LogEntryLevel, string)
public ResponseLogEntry(LogEntryLevel logLevel, string message)
Parameters
logLevelLogEntryLevelmessagestring
ResponseLogEntry(LogEntryLevel, string, Exception)
public ResponseLogEntry(LogEntryLevel logLevel, string message, Exception e)
Parameters
logLevelLogEntryLevelmessagestringeException
ResponseLogEntry(LogEntryLevel, string, string)
public ResponseLogEntry(LogEntryLevel logLevel, string message, string details)
Parameters
logLevelLogEntryLevelmessagestringdetailsstring
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; }