VSNDK.DebugEngine.EngineCallback.OnAsyncBreakComplete C# (CSharp) Method

OnAsyncBreakComplete() public method

This will get called when the engine receives the breakpoint event that is created when the user hits the pause button in VS.
public OnAsyncBreakComplete ( AD7Thread thread ) : void
thread AD7Thread The thread running in a program.
return void
        public void OnAsyncBreakComplete(AD7Thread thread)
        {
            AD7AsyncBreakCompleteEvent eventObject = new AD7AsyncBreakCompleteEvent();
            Send(eventObject, AD7AsyncBreakCompleteEvent.IID, thread);
        }