VSNDK.DebugEngine.AD7ProgramNodeAttach.CauseBreak C# (CSharp) Method

CauseBreak() public method

Requests that the program stop execution the next time one of its threads attempts to run. The debugger calls CauseBreak when the user clicks on the pause button in VS. The debugger should respond by entering breakmode. (http://msdn.microsoft.com/en-us/library/bb145018.aspx) Not implemented because this class is not used by the debug engine. Read the description of this class at the top.
public CauseBreak ( ) : int
return int
        public int CauseBreak()
        {
            return ((IDebugEngine2)this).CauseBreak();
        }