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