Mono.Debugger.ExceptionCatchPoint.ExceptionCatchPoint C# (CSharp) Method

ExceptionCatchPoint() private method

private ExceptionCatchPoint ( int index, ThreadGroup group, string name, bool unhandled ) : System
index int
group ThreadGroup
name string
unhandled bool
return System
        internal ExceptionCatchPoint(int index, ThreadGroup group, string name, bool unhandled)
            : base(EventType.CatchException, index, name, group)
        {
            this.Unhandled = unhandled;
        }

Same methods

ExceptionCatchPoint::ExceptionCatchPoint ( ThreadGroup group, TargetType exception, bool unhandled ) : System