예제 #1
0
 public AuditLogEntry ChangeSummary(MessageInfo summary)
 {
     return(ChangeSummary(summary.ToMessage(LogLevel.summary)));
 }
예제 #2
0
 protected bool Equals(MessageInfo other)
 {
     return(Type == other.Type && ArrayUtil.EqualsDeep(Names, other.Names));
 }
예제 #3
0
 public LogMessage(LogLevel level, MessageInfo info, bool expanded)
 {
     Level       = level;
     MessageInfo = info;
     Expanded    = expanded;
 }
예제 #4
0
 public DetailLogMessage(LogLevel level, MessageInfo info, string reason, bool expanded) : base(level, info, expanded)
 {
     Reason = reason;
 }
예제 #5
0
 protected bool Equals(MessageInfo other)
 {
     return(Type == other.Type && DocumentType == other.DocumentType && Equals(Names, other.Names));
 }