コード例 #1
0
 private void OnLogEvent(object sender, DomainExecutingArgs e)
 {
     if (LogEvent != null)
     {
         LogEvent(this, e);
     }
 }
コード例 #2
0
ファイル: AdapterDomain.cs プロジェクト: zmm623/IKendeLib
 protected virtual void OnLogEvent(DomainExecutingArgs e)
 {
     if (LogEvent != null)
     {
         LogEvent(this, e);
     }
 }
コード例 #3
0
ファイル: AdapterDomain.cs プロジェクト: zmm623/IKendeLib
        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
ファイル: AdapterDomain.cs プロジェクト: hdxhan/IKendeLib
 protected virtual void OnLogEvent(DomainExecutingArgs e)
 {
     if (LogEvent != null)
         LogEvent(this, e);
 }
コード例 #6
0
ファイル: AdapterDomain.cs プロジェクト: hdxhan/IKendeLib
 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);
 }