Exemplo n.º 1
0
 int ICorDebugStepper.SetUnmappedStopMask(CorDebugUnmappedStop mask)
 {
     return(COM_HResults.S_OK);
 }
Exemplo n.º 2
0
 /** Should the stepper stop in jitted code not mapped to IL? */
 public void SetUnmappedStopMask(CorDebugUnmappedStop mask)
 {
     m_step.SetUnmappedStopMask(mask);
 }
Exemplo n.º 3
0
 public void SetUnmappedStopMask(CorDebugUnmappedStop mask)
 {
     this.WrappedObject.SetUnmappedStopMask(((Interop.CorDebug.CorDebugUnmappedStop)(mask)));
 }
 public static void SetUnmappedStopMask(this ICorDebugStepper instance, CorDebugUnmappedStop mask)
 {
     instance.__SetUnmappedStopMask(mask);
 }
 public void SetUnmappedStopMask (CorDebugUnmappedStop mask)
 {
     m_step.SetUnmappedStopMask (mask);
 }
Exemplo n.º 6
0
        public bool SetUnmappedStopMask(CorDebugUnmappedStop flags)
        {
            int hr = obj.SetUnmappedStopMask(flags);

            return(hr >= 0);
        }
Exemplo n.º 7
0
 int ICorDebugStepper.SetUnmappedStopMask( CorDebugUnmappedStop mask )
 {
     return Utility.COM_HResults.S_OK;            
 }
Exemplo n.º 8
0
 /// <summary>
 /// Sets a value that specifies the type of unmapped code
 /// in which execution will halt.
 /// </summary>
 /// <remarks>
 /// The default value is <see cref="CorDebugUnmappedStop.STOP_OTHER_UNMAPPED" />.
 /// The value <see cref="CorDebugUnmappedStop.STOP_UNMANAGED" /> is only
 /// valid with interop debugging.
 ///
 /// When the debugger finds a just-in-time (JIT) compilation
 /// that has no corresponding mapping to Microsoft intermediate
 /// language (MSIL), it halts execution if the flag specifying
 /// that type of unmapped code has been set; otherwise, stepping
 /// transparently continues.
 ///
 /// If the debugger doesn't use a stepper to enter a method,
 /// then it won't necessarily step over unmapped code.
 /// </remarks>
 public int SetUnmappedStopMask(CorDebugUnmappedStop mask) => Calli(_this, This[0]->SetUnmappedStopMask, (int)mask);