C# Class CK.Core.SystemActivityMonitor.LowLevelErrorEventArgs

Defines the event argument of SystemActivityMonitor.OnError.
Inheritance: System.EventArgs
Afficher le fichier Open project: Invenietis/ck-core

Méthodes publiques

Свойство Type Description
ErrorMessage string
ErrorWhileWritingLogFile System.Exception
FullLogFilePath string

Private Methods

Méthode 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
Résultat 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
Résultat 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
Résultat string