示例#1
0
        public Event InsertExceptionCatchPoint(Thread target, ThreadGroup group,
                                               TargetType exception, bool unhandled)
        {
            Event handle = new ExceptionCatchPoint(group, exception, unhandled);

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