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