net/http.Cookie.Value (field)
10 uses
net/http (current package)
client.go#L790: ss = append(ss, c.Name+"="+c.Value)
cookie.go#L25: Value string
cookie.go#L86: Value: value,
cookie.go#L187: b.Grow(len(c.Name) + len(c.Value) + len(c.Domain) + len(c.Path) + extraCookieLength)
cookie.go#L190: b.WriteString(sanitizeCookieValue(c.Value))
cookie.go#L253: for i := 0; i < len(c.Value); i++ {
cookie.go#L254: if !validCookieValueByte(c.Value[i]) {
cookie.go#L255: return fmt.Errorf("http: invalid byte %q in Cookie.Value", c.Value[i])
cookie.go#L306: cookies = append(cookies, &Cookie{Name: name, Value: val})
request.go#L443: s := fmt.Sprintf("%s=%s", sanitizeCookieName(c.Name), sanitizeCookieValue(c.Value))
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |