Mono.Debugger.Breakpoint.CheckBreakpointHit C# (CSharp) Method

CheckBreakpointHit() public method

This method is called each time the breakpoint is hit. It returns true if the target should remain stopped and false if the breakpoint is to be ignored.
The @target argument is *not* serializable and may not be used anywhere outside this handler.
public CheckBreakpointHit ( Thread target, TargetAddress address ) : bool
target Thread
address TargetAddress
return bool
        public virtual bool CheckBreakpointHit(Thread target, TargetAddress address)
        {
            return true;
        }