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