Exemplo n.º 1
0
 public ProcessLogItem(ProcessLogItemType type, string message, Exception exception)
 {
     When = DateTime.UtcNow;
     Type = type;
     Message = message;
     Exception = exception;
 }
Exemplo n.º 2
0
 public ProcessLogItem(ProcessLogItemType type, string message, Exception exception)
 {
     When = DateTime.UtcNow;
     Type = type;
     Message = Optional(message);
     Exception = Optional(exception);
 }
Exemplo n.º 3
0
 public ProcessLogItem(ProcessLogItemType type, Exception exception)
     :
     this(type, null, exception)
 {
 }
Exemplo n.º 4
0
 public ProcessLogItem(ProcessLogItemType type, string message)
     :
     this(type, message, null)
 {
 }
Exemplo n.º 5
0
 public ProcessLogItem(ProcessLogItemType type, string message)
     :
     this(type, message, null)
 {
 }
Exemplo n.º 6
0
 public ProcessLogItem(ProcessLogItemType type, Exception exception)
     :
     this(type, null, exception)
 {
 }