public Event InsertExceptionCatchPoint(Thread target, ThreadGroup group, TargetType exception, bool unhandled) { Event handle = new ExceptionCatchPoint(group, exception, unhandled); AddEvent(handle); return(handle); }
public int AddExceptionCatchPoint(ExceptionCatchPoint catchpoint) { check_disposed (); // Do nothing; the session now maintains exception catchpoints. return catchpoint.UniqueID; }
public int AddExceptionCatchPoint(ExceptionCatchPoint catchpoint) { check_disposed(); // Do nothing; the session now maintains exception catchpoints. return(catchpoint.UniqueID); }
public Event InsertExceptionCatchPoint(Thread target, ThreadGroup group, TargetType exception, bool unhandled) { Event handle = new ExceptionCatchPoint (group, exception, unhandled); AddEvent (handle); return handle; }