示例#1
0
        int ICorDebugThread.CreateStepper(out ICorDebugStepper ppStepper)
        {
            Debug.Assert(!IsVirtualThread);
            ICorDebugFrame frame;

            ((ICorDebugThread)this).GetActiveFrame(out frame);
            ppStepper = new CorDebugStepper((CorDebugFrame)frame);

            return(COM_HResults.S_OK);
        }
示例#2
0
 public ManagedCallbackStepComplete(CorDebugThread thread, CorDebugStepper stepper, CorDebugStepReason reason) : base(thread)
 {
     m_stepper = stepper;
     m_reason  = reason;
 }
示例#3
0
        int ICorDebugFrame.CreateStepper(out ICorDebugStepper ppStepper)
        {
            ppStepper = new CorDebugStepper(this);

            return(COM_HResults.S_OK);
        }