コード例 #1
0
 public ManagedCallbackBreakpointSetError(CorDebugThread thread, CorDebugBreakpoint breakpoint, uint error) : base(thread, breakpoint)
 {
     m_error = error;
 }
コード例 #2
0
 public ManagedCallbackBreakpoint(CorDebugThread thread, CorDebugBreakpoint breakpoint, Type typeToMarshal) : base(thread)
 {
     m_breakpoint    = breakpoint;
     m_typeToMarshal = typeToMarshal;
 }
コード例 #3
0
 public ManagedCallbackBreakpoint(CorDebugThread thread, CorDebugBreakpoint breakpoint) : this(thread, breakpoint, typeof(ICorDebugBreakpoint))
 {
 }