C# Class CK.Core.SystemActivityMonitor.LowLevelErrorEventArgs

Defines the event argument of SystemActivityMonitor.OnError.
Inheritance: System.EventArgs
Datei anzeigen Open project: Invenietis/ck-core

Public Properties

Property Type Description
ErrorMessage string
ErrorWhileWritingLogFile System.Exception
FullLogFilePath string

Private Methods

Method Description
LowLevelErrorEventArgs ( string errorMessage, string fullLogFilePath, Exception writeError ) : System

Property Details

ErrorMessage public_oe property

The error message. Never null nor empty.
public string ErrorMessage
return string

ErrorWhileWritingLogFile public_oe property

Exception raised while attempting to create the error file. This could be used to handle configuration error: an exception here means that something is going really wrong.
public Exception,System ErrorWhileWritingLogFile
return System.Exception

FullLogFilePath public_oe property

Not null if the ErrorMessage has been successfully written (if SystemActivityMonitor.RootLogPath is set). Contains the full path of the log file.
public string FullLogFilePath
return string