AutoWikiBrowser.MainForm.ReparseEditBoxComplete C# (CSharp) Method

ReparseEditBoxComplete() private method

Called by ReparseEditBox complete event Calls ReparseEditBoxPart2 to update alerts etc. after re-processing page
private ReparseEditBoxComplete ( BackgroundRequest req ) : void
req BackgroundRequest
return 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