internal CorErrorInfoEnumerator(ICorDebugErrorInfoEnum erroInfoEnumerator)
 {
     m_enum = erroInfoEnumerator;
 }
 int ICorDebugController.CommitChanges( uint cSnapshots, ref ICorDebugEditAndContinueSnapshot pSnapshots, out ICorDebugErrorInfoEnum pError )
 {
     return ((ICorDebugController)m_process).CommitChanges(cSnapshots, ref pSnapshots, out pError);
 }
 int ICorDebugAppDomain.CommitChanges( uint cSnapshots, ref ICorDebugEditAndContinueSnapshot pSnapshots, out ICorDebugErrorInfoEnum pError )
 {
     return this.ICorDebugController.CommitChanges( cSnapshots, ref pSnapshots, out pError );
 }
Esempio n. 4
0
 internal CorErrorInfoEnumerator(ICorDebugErrorInfoEnum erroInfoEnumerator)
 {
     m_enum = erroInfoEnumerator;
 }
        int ICorDebugController.CommitChanges(uint cSnapshots, ref ICorDebugEditAndContinueSnapshot pSnapshots, out ICorDebugErrorInfoEnum pError)
        {
            // CorDebugProcess.CommitChanges is not implemented
            pError = null;

            return Utility.COM_HResults.S_OK;
        }
 int ICorDebugAppDomain.CommitChanges(uint cSnapshots, ref ICorDebugEditAndContinueSnapshot pSnapshots, out ICorDebugErrorInfoEnum pError)
 {
     return(this.ICorDebugController.CommitChanges(cSnapshots, ref pSnapshots, out pError));
 }
 int ICorDebugController.CommitChanges(uint cSnapshots, ref ICorDebugEditAndContinueSnapshot pSnapshots, out ICorDebugErrorInfoEnum pError)
 {
     return(((ICorDebugController)m_process).CommitChanges(cSnapshots, ref pSnapshots, out pError));
 }
 internal ErrorInfoEnumerator(ICorDebugErrorInfoEnum e)
 {
     m_enum = e;
 }