Table of Contents

Class ResponseLogEntry

Namespace
JobFlow.Models.Jobs
Assembly
JobFlow.Models.dll

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 LogEntryLevel
message string

ResponseLogEntry(LogEntryLevel, string, Exception)

public ResponseLogEntry(LogEntryLevel logLevel, string message, Exception e)

Parameters

logLevel LogEntryLevel
message string
e Exception

ResponseLogEntry(LogEntryLevel, string, string)

public ResponseLogEntry(LogEntryLevel logLevel, string message, string details)

Parameters

logLevel LogEntryLevel
message string
details string

Properties

Details

Any additional details.

public string Details { get; set; }

Property Value

string

Level

Log level of the message.

public LogEntryLevel Level { get; set; }

Property Value

LogEntryLevel

Message

Primary message string.

public string Message { get; set; }

Property Value

string