Example #1
0
 public void Stop()
 {
     if (this._stopMethod == null)
     {
         this._stopMethod = base.Methods["Stop"];
     }
     this._stopMethod.CreateInstance().Execute();
 }
 public void Terminate()
 {
     if (this._terminateMethod == null)
     {
         this._terminateMethod = base.Methods["Terminate"];
     }
     this._terminateMethod.CreateInstance().Execute();
 }
Example #3
0
 public void FlushLog()
 {
     if (this._flushLogMethod == null)
     {
         this._flushLogMethod = base.Methods["FlushLog"];
     }
     this._flushLogMethod.CreateInstance().Execute();
 }