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 );
 }
Exemplo n.º 3
0
        int ICorDebugModule.GetEditAndContinueSnapshot(out ICorDebugEditAndContinueSnapshot ppEditAndContinueSnapshot)
        {
            ppEditAndContinueSnapshot = null;

            return(COM_HResults.S_OK);
        }
 public static ICorDebugErrorInfoEnum CanCommitChanges(this ICorDebugProcess instance, uint cSnapshots, ref ICorDebugEditAndContinueSnapshot pSnapshots)
 {
     ICorDebugErrorInfoEnum pError;
     instance.__CanCommitChanges(cSnapshots, ref pSnapshots, out pError);
     return pError;
 }
        int ICorDebugModule.GetEditAndContinueSnapshot( out ICorDebugEditAndContinueSnapshot ppEditAndContinueSnapshot )
        {
            ppEditAndContinueSnapshot = null;

            return Utility.COM_HResults.S_OK;
        }
Exemplo n.º 6
0
        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));
 }
		public static ICorDebugErrorInfoEnum CommitChanges(this ICorDebugAppDomain instance, uint cSnapshots, ref ICorDebugEditAndContinueSnapshot pSnapshots)
		{
			ICorDebugErrorInfoEnum pError;
			instance.__CommitChanges(cSnapshots, ref pSnapshots, out pError);
			ProcessOutParameter(pSnapshots);
			ProcessOutParameter(pError);
			return pError;
		}