示例#1
0
 // -----------------------------------------------------------------------------
 private void SetHaltOperation(HaltOperationDelegate haltOperationFunc)
 {
     _haltOperationFunc = haltOperationFunc;
 }
示例#2
0
 // -----------------------------------------------------------------------------
 public Runner(UpdateDetectionVariables updateDetectionVariables, HaltOperationDelegate haltOperationFunc)
 {
     _UpdateDetectionVariables = updateDetectionVariables;
     SetHaltOperation(haltOperationFunc);
     AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
 }
示例#3
0
 public DPRRunner(HaltOperationDelegate haltOperationFunc)
     : base(haltOperationFunc)
 {
 }