WikiFunctions.Controls.RegexRunner.Abort C# (CSharp) Method

Abort() public method

public Abort ( ) : void
return void
        public void Abort()
        {
            if (Thr != null)
                Thr.Abort();
        }

Usage Example

Example #1
0
        private void AbortProcessing()
        {
            Busy = false;
            if (Runner == null)
            {
                return;
            }

            Runner.Abort();
            Runner      = null;
            Status.Text = "Processing aborted";
        }