CK.Core.SystemActivityMonitor.LowLevelErrorEventArgs.LowLevelErrorEventArgs C# (CSharp) Method

LowLevelErrorEventArgs() private method

private LowLevelErrorEventArgs ( string errorMessage, string fullLogFilePath, Exception writeError ) : System
errorMessage string
fullLogFilePath string
writeError System.Exception
return System
            internal LowLevelErrorEventArgs( string errorMessage, string fullLogFilePath, Exception writeError )
            {
                ErrorMessage = errorMessage;
                FullLogFilePath = fullLogFilePath;
                ErrorWhileWritingLogFile = writeError;
            }
        }
SystemActivityMonitor.LowLevelErrorEventArgs