AutoWikiBrowser.MainForm.AutomaticallyDoAnythingComplete C# (CSharp) Метод

AutomaticallyDoAnythingComplete() приватный Метод

Event that fires when ProcessPage background thread finishes
private AutomaticallyDoAnythingComplete ( WikiFunctions.Background.BackgroundRequest req ) : void
req WikiFunctions.Background.BackgroundRequest
Результат void
        private void AutomaticallyDoAnythingComplete(BackgroundRequest req)
        {
            // must use Invoke so that SkipChecks and CompleteProcessPage are done on main GUI thread
            if (InvokeRequired)
            {
                Invoke(new MethodInvoker(RunSkipChecks));
                return;
            }
            RunSkipChecks();
        }
MainForm