net/url.URL.String (method, view implemented interface methods)

14 uses

	net/url (current package)
		url.go#L811: func (u *URL) String() string {
		url.go#L871: 	return ru.String()
		url.go#L1173: 	return []byte(u.String()), nil

	net/http
		client.go#L154: 	referer := lastReq.String()
		client.go#L1006: 		return strings.Replace(u.String(), u.User.String()+"@", u.User.Username()+":***@", 1)
		client.go#L1008: 	return u.String()
		fs.go#L162: 		fmt.Fprintf(w, "<a href=\"%s\">%s</a>\n", url.String(), htmlReplacer.Replace(name))
		server.go#L2391: 			return RedirectHandler(u.String(), StatusMovedPermanently), u.Path
		server.go#L2405: 		return RedirectHandler(u.String(), StatusMovedPermanently), u.Path
		server.go#L2412: 		return RedirectHandler(url.String(), StatusMovedPermanently), pattern
		transport.go#L1807: 		proxyStr = cm.proxyURL.String()

	crypto/x509
		verify.go#L442: 		return false, fmt.Errorf("URI with empty host (%q) cannot be matched against constraints", uri.String())
		verify.go#L455: 		return false, fmt.Errorf("URI with IP (%q) cannot be matched against constraints", uri.String())
		x509.go#L1669: 		uriStr := uri.String()