Mono.CSharp.Evaluator.Interrupt C# (CSharp) Method

Interrupt() public method

Interrupts the evaluation of an expression executing in Evaluate.
Use this method to interrupt long-running invocations.
public Interrupt ( ) : void
return void
        public void Interrupt()
        {
            if (!inited || !invoking)
                return;

            if (invoke_thread != null)
                invoke_thread.Abort ();
        }