Ejemplo n.º 1
0
 private void OnLogEvent(object sender, DomainExecutingArgs e)
 {
     if (LogEvent != null)
     {
         LogEvent(this, e);
     }
 }
Ejemplo n.º 2
0
 protected virtual void OnLogEvent(DomainExecutingArgs e)
 {
     if (LogEvent != null)
     {
         LogEvent(this, e);
     }
 }
Ejemplo n.º 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);
        }
Ejemplo n.º 4
0
 private void OnLogEvent(object sender, DomainExecutingArgs e)
 {
     if (LogEvent != null)
         LogEvent(this, e);
 }
Ejemplo n.º 5
0
 protected virtual void OnLogEvent(DomainExecutingArgs e)
 {
     if (LogEvent != null)
         LogEvent(this, e);
 }
Ejemplo n.º 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);
 }