Mono.Debugger.ExpressionBreakpoint.Activate C# (CSharp) Method

Activate() public method

public Activate ( Thread thread ) : void
thread Thread
return void
        public override void Activate(Thread thread)
        {
            Resolve (thread, thread.CurrentFrame);
            if (handle == null)
                throw new TargetException (TargetError.LocationInvalid);
            handle.Insert (thread);
        }