Beispiel #1
0
 private void backgroundWorkerDiagnosticManager_DoWork(object sender, DoWorkEventArgs e)
 {
     if (e.Argument is List <Diagnostic> )
     {
         Diagnostic.DiagnosticManager(_apm, e.Argument as List <Diagnostic>);
     }
     else
     {
         throw new Exception("m0162-Not passing the right parameter");
     }
 }