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

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

Called by ReparseEditBox complete event Calls ReparseEditBoxPart2 to update alerts etc. after re-processing page
private ReparseEditBoxComplete ( BackgroundRequest req ) : void
req BackgroundRequest
Результат void
        private void ReparseEditBoxComplete(BackgroundRequest req)
        {
            // must use Invoke so that ReparseEditBoxPart2 is done on main GUI thread
            if (InvokeRequired)
            {
                Invoke(new MethodInvoker(ReparseEditBoxPart2));
                return;
            }
            ReparseEditBoxPart2();
        }
MainForm