Ejemplo n.º 1
0
        /**
         * create a breakpoint which is triggered when code in the module
         * is executed.
         */
        public CorModuleBreakpoint CreateBreakpoint()
        {
            ICorDebugModuleBreakpoint mbr = null;

            m_module.CreateBreakpoint(out mbr);
            return(new CorModuleBreakpoint(mbr));
        }
Ejemplo n.º 2
0
        // create a breakpoint which is triggered when code in the module
        // is executed.
        public DebuggedModuleBreakpoint CreateBreakpoint()
        {
            ICorDebugModuleBreakpoint mbr = null;

            m_mod.CreateBreakpoint(out mbr);
            return(new DebuggedModuleBreakpoint(mbr));
        }