예제 #1
0
 protected void OnStepComplete(ITimedLogSection logSection)
 {
     if (this.StepComplete != null)
     {
         this.StepComplete(this, new TimingEventArgs(logSection));
     }
 }
예제 #2
0
 protected void OnStepStarted(ITimedLogSection logSection)
 {
     if (this.StepStarted != null)
     {
         this.StepStarted(this, new TimingEventArgs(logSection));
     }
 }
예제 #3
0
 protected void OnStepStarted(ITimedLogSection logSection)
 {
     if (this.StepStarted != null)
         this.StepStarted(this, new TimingEventArgs(logSection));
 }
예제 #4
0
 protected void OnStepComplete(ITimedLogSection logSection)
 {
     if (this.StepComplete != null)
         this.StepComplete(this, new TimingEventArgs(logSection));
 }
예제 #5
0
 public TimingEventArgs(ITimedLogSection logSection)
     : base()
 {
     this.LogSection = logSection;
 }
예제 #6
0
 public TimingEventArgs(ITimedLogSection logSection)
     : base()
 {
     this.LogSection = logSection;
 }