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

Activate() public method

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