Ejemplo n.º 1
0
        /** Breakpoint triggered when the value is modified. */
        public ValueBreakpoint CreateBreakpoint()
        {
            ICorDebugValueBreakpoint bp = null;

            m_val.CreateBreakpoint(out bp);
            return(new ValueBreakpoint(bp));
        }
Ejemplo n.º 2
0
        //void CreateRelocBreakpoint(ref Microsoft.Samples.Debugging.CorDebug.NativeApi.ICorDebugValueBreakpoint ppBreakpoint);
        public CorValueBreakpoint CreateRelocBreakpoint()
        {
            ICorDebugValueBreakpoint bp = null;

            m_heapVal.CreateRelocBreakpoint(out bp);
            return(new CorValueBreakpoint(bp));
        }
Ejemplo n.º 3
0
        int ICorDebugHeapValue.CreateRelocBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
        {
            ppBreakpoint = null;

            return(COM_HResults.E_NOTIMPL);
        }
Ejemplo n.º 4
0
 int ICorDebugGenericValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(this.ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
 internal CorValueBreakpoint(ICorDebugValueBreakpoint breakpoint) : base(breakpoint)
 {
     m_br = breakpoint;
 }
Ejemplo n.º 6
0
 int ICorDebugStringValue.CreateRelocBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(this.ICorDebugHeapValue.CreateRelocBreakpoint(out ppBreakpoint));
 }
Ejemplo n.º 7
0
        int ICorDebugValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
        {
            ppBreakpoint = null;

            return(Utility.COM_HResults.E_NOTIMPL);
        }
Ejemplo n.º 8
0
 int ICorDebugArrayValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
Ejemplo n.º 9
0
 int ICorDebugArrayValue.CreateRelocBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(this.ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
Ejemplo n.º 10
0
        int ICorDebugHeapValue.CreateRelocBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
        {
            ppBreakpoint = null;

            return Utility.COM_HResults.E_NOTIMPL;            
        }
Ejemplo n.º 11
0
 int ICorDebugArrayValue.CreateRelocBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
 {
     return this.ICorDebugValue.CreateBreakpoint( out ppBreakpoint );            
 }
Ejemplo n.º 12
0
 int ICorDebugObjectValue.CreateBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
 {
     return this.ICorDebugValue.CreateBreakpoint( out ppBreakpoint );            
 }
Ejemplo n.º 13
0
 int ICorDebugHandleValue.CreateBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
 {
     return this.ICorDebugValue.CreateBreakpoint( out ppBreakpoint );            
 }
Ejemplo n.º 14
0
 int ICorDebugReferenceValue.CreateBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
 {
     return this.ICorDebugValue.CreateBreakpoint( out ppBreakpoint );
 }
Ejemplo n.º 15
0
 int ICorDebugGenericValue.CreateBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
 {
     return this.ICorDebugValue.CreateBreakpoint( out ppBreakpoint );            
 }
Ejemplo n.º 16
0
 int ICorDebugReferenceValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(this.ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
 internal CorValueBreakpoint(ICorDebugValueBreakpoint breakpoint) : base(breakpoint)
 {
     m_br = breakpoint;
 }
Ejemplo n.º 18
0
 int ICorDebugHandleValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(this.ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
Ejemplo n.º 19
0
 int ICorDebugStringValue.CreateRelocBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
 {
     return this.ICorDebugHeapValue.CreateRelocBreakpoint( out ppBreakpoint );
 }
Ejemplo n.º 20
0
 int ICorDebugObjectValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(this.ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
Ejemplo n.º 21
0
 int ICorDebugStringValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
Ejemplo n.º 22
0
 int ICorDebugBoxValue.CreateRelocBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
Ejemplo n.º 23
0
 internal ValueBreakpoint(ICorDebugValueBreakpoint br)
     : base(br)
 {
 }