ParseLocation() private method

private ParseLocation ( Thread target, StackFrame frame, LocationType type, string name ) : SourceLocation
target Thread
frame StackFrame
type LocationType
name string
return SourceLocation
        internal override BreakpointHandle Resolve(Thread target, StackFrame frame)
        {
            if (handle != null)
            {
                return(handle);
            }

            SourceLocation location = Session.ParseLocation(
                target, frame, LocationType, Name);

            if (location == null)
            {
                throw new TargetException(TargetError.LocationInvalid);
            }

            handle = location.ResolveBreakpoint(Session, this);
            return(handle);
        }