예제 #1
0
 private void OnLogEvent(object sender, DomainExecutingArgs e)
 {
     if (LogEvent != null)
     {
         LogEvent(this, e);
     }
 }
예제 #2
0
 protected virtual void OnLogEvent(DomainExecutingArgs e)
 {
     if (LogEvent != null)
     {
         LogEvent(this, e);
     }
 }
예제 #3
0
        private void CallLogEvent(ExecutingStatus status, Exception error, string message)
        {
            DomainExecutingArgs e = new DomainExecutingArgs();

            e.App         = this.VirtualName;
            e.Error       = error;
            e.Status      = status;
            e.Message     = message;
            e.AppFullPath = this.FullPath;
            OnLogEvent(e);
        }
예제 #4
0
파일: Center.cs 프로젝트: hdxhan/IKendeLib
 private void OnLogEvent(object sender, DomainExecutingArgs e)
 {
     if (LogEvent != null)
         LogEvent(this, e);
 }
예제 #5
0
 protected virtual void OnLogEvent(DomainExecutingArgs e)
 {
     if (LogEvent != null)
         LogEvent(this, e);
 }
예제 #6
0
 private void CallLogEvent(ExecutingStatus status, Exception error, string message)
 {
     DomainExecutingArgs e = new DomainExecutingArgs();
     e.App = this.VirtualName;
     e.Error = error;
     e.Status = status;
     e.Message = message;
     e.AppFullPath = this.FullPath;
     OnLogEvent(e);
 }