Esempio n. 1
0
 public UserLog(Exception ex)
 {
     this.Exception = ex;
     LogQueue.Add(this);
 }
Esempio n. 2
0
 public UserLog(string message, Exception ex)
 {
     this.Message   = message;
     this.Exception = ex;
     LogQueue.Add(this);
 }
Esempio n. 3
0
 public UserLog(string message)
 {
     this.Message = message;
     LogQueue.Add(this);
 }