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

Deactivate() public method

public Deactivate ( Thread target ) : void
target Thread
return void
        public override void Deactivate(Thread target)
        {
            if (handle != null) {
                handle.Remove (target);
                handle = null;
            }
        }