Exemplo n.º 1
0
 private void LogAuditState(AuditLog auditLog)
 {
     _logWriter.LogAuditState(auditLog);
 }
Exemplo n.º 2
0
        public void LogPreExecuteState(IDev2Activity nextActivity)
        {
            var auditLog = new AuditLog(_dsfDataObject, "LogPreExecuteState", null, null, nextActivity);

            LogAuditState(auditLog);
        }
Exemplo n.º 3
0
        public void LogStopExecutionState(IDev2Activity activity)
        {
            var auditLog = new AuditLog(_dsfDataObject, "LogStopExecutionState", null, activity, null);

            LogAuditState(auditLog);
        }
Exemplo n.º 4
0
        public void LogExecuteException(Exception e, IDev2Activity activity)
        {
            var auditLog = new AuditLog(_dsfDataObject, "LogExecuteException", e.Message, activity, null);

            LogAuditState(auditLog);
        }
Exemplo n.º 5
0
        public void LogPostExecuteState(IDev2Activity previousActivity, IDev2Activity nextActivity)
        {
            var auditLog = new AuditLog(_dsfDataObject, "LogPostExecuteState", null, previousActivity, nextActivity);

            LogAuditState(auditLog);
        }
Exemplo n.º 6
0
 public bool FilterLogEntry(AuditLog auditLog)
 {
     return(FilterLogEntry(auditLog, null));
 }
Exemplo n.º 7
0
 public bool FilterDetailLogEntry(AuditLog auditLog, object detail)
 {
     return(FilterLogEntry(auditLog, null));
 }
Exemplo n.º 8
0
 public bool FilterLogEntry(AuditLog auditLog) => true;
Exemplo n.º 9
0
 public bool FilterLogEntry(AuditLog log, IDev2Activity activity) => true;
Exemplo n.º 10
0
 public bool FilterDetailLogEntry(AuditLog auditLog, object detail) => true;