int ICorDebugAppDomain.EnumerateBreakpoints( out ICorDebugBreakpointEnum ppBreakpoints )
        {            
            ppBreakpoints = new CorDebugEnum(this.Process.GetBreakpoints(typeof(CorDebugBreakpoint), this), typeof(ICorDebugBreakpoint), typeof(ICorDebugBreakpointEnum));

            return Utility.COM_HResults.S_OK;
        }
Exemplo n.º 2
0
 internal CorBreakpointEnumerator(ICorDebugBreakpointEnum breakpointEnumerator)
 {
     m_enum = breakpointEnumerator;
 }
        int ICorDebugAppDomain.EnumerateBreakpoints(out ICorDebugBreakpointEnum ppBreakpoints)
        {
            ppBreakpoints = new CorDebugEnum(this.Process.GetBreakpoints(typeof(CorDebugBreakpoint), this), typeof(ICorDebugBreakpoint), typeof(ICorDebugBreakpointEnum));

            return(COM_HResults.S_OK);
        }
Exemplo n.º 4
0
 internal CorBreakpointEnumerator(ICorDebugBreakpointEnum breakpointEnumerator)
 {
     m_enum = breakpointEnumerator;
 }
Exemplo n.º 5
0
 internal BreakpointEnumerator(ICorDebugBreakpointEnum e)
 {
     m_enum = e;
 }