Ejemplo n.º 1
0
        private void backgroundWorker_DoWork(object sender, System.ComponentModel.DoWorkEventArgs e)
        {
            MXFFile mainFile = e.Argument as MXFFile;

            if (mainFile != null)
            {
                BackgroundWorker worker = sender as BackgroundWorker;
                mainFile.ExecuteValidationTest(worker, true);
            }
        }