Cookies returns the HTTP cookies sent with the request.
()
| 450 | |
| 451 | // Cookies returns the HTTP cookies sent with the request. |
| 452 | func (c *Context) Cookies() []*http.Cookie { |
| 453 | return c.request.Cookies() |
| 454 | } |
| 455 | |
| 456 | // Get retrieves data from the context. |
| 457 | // Method returns any(nil) when key does not exist which is different from typed nil (eg. []byte(nil)). |
no outgoing calls