// Informs a DE that the program specified has been atypically terminated and that the DE should // clean up all references to the program and send a program destroy event. int IDebugEngine2.DestroyProgram(IDebugProgram2 pProgram) { return pProgram.Terminate(); }
// Informs a DE that the program specified has been atypically terminated and that the DE should // clean up all references to the program and send a program destroy event. int IDebugEngine2.DestroyProgram(IDebugProgram2 pProgram) { return(pProgram.Terminate()); }
int IDebugEngine2.DestroyProgram(IDebugProgram2 program) { EngineUtils.RequireOk(program.Terminate()); _callbacks.OnProgramTerminated(); return(VSConstants.S_OK); }
int IDebugProgram3.Terminate() { return(IDebugProgram2.Terminate()); }
int IDebugEngine2.DestroyProgram(IDebugProgram2 program) { ErrorHandler.ThrowOnFailure(program.Terminate()); _callbacks.OnProgramTerminated(); return(VSConstants.S_OK); }