protected override unsafe int OnBreakpoint(
     CorDebugAppDomain pAppDomain,
     CorDebugThread pThread,
     CorDebugBreakpoint pBreakpoint)
 {
     Breakpoint?.Invoke(this, pAppDomain, pThread, pBreakpoint);
     return(Continue());
 }
 protected override unsafe int OnBreakpointSetError(
     CorDebugAppDomain pAppDomain,
     CorDebugThread pThread,
     CorDebugBreakpoint pBreakpoint,
     uint dwError)
 {
     BreakpointSetError?.Invoke(this, pAppDomain, pThread, pBreakpoint, dwError);
     return(Continue());
 }
Example #3
0
 protected abstract int OnBreakpointSetError(
     CorDebugAppDomain pAppDomain,
     CorDebugThread pThread,
     CorDebugBreakpoint pBreakpoint,
     uint dwError);
Example #4
0
 protected abstract int OnBreakpoint(
     CorDebugAppDomain pAppDomain,
     CorDebugThread pThread,
     CorDebugBreakpoint pBreakpoint);
Example #5
0
 int ICorDebugManagedCallback.BreakpointSetError(CorDebugAppDomain pAppDomain, CorDebugThread pThread, CorDebugBreakpoint pBreakpoint, uint dwError)
 {
     return(0);
 }