Ejemplo n.º 1
0
        // Token: 0x060000D0 RID: 208 RVA: 0x0000433C File Offset: 0x0000253C
        internal void OnBreakpointError(string error_msg)
        {
            if (this.error_breakpoint != null)
            {
                return;
            }
            ErrorBreakpointResolution error = new ErrorBreakpointResolution(this.process, error_msg);

            this.error_breakpoint = new ErrorBreakpoint(this, error);
            this.eventSender.SendEvent(new BreakpointErrorEvent(this.error_breakpoint));
        }
Ejemplo n.º 2
0
 // Token: 0x06000125 RID: 293 RVA: 0x00005539 File Offset: 0x00003739
 public ErrorBreakpoint(PendingBreakpoint pending, ErrorBreakpointResolution error)
 {
     this.PendingBreakpoint = pending;
     this.ErrorResolution   = error;
 }