MultipartForm returns the multipart form.
()
| 434 | |
| 435 | // MultipartForm returns the multipart form. |
| 436 | func (c *Context) MultipartForm() (*multipart.Form, error) { |
| 437 | err := c.request.ParseMultipartForm(c.formParseMaxMemory) |
| 438 | return c.request.MultipartForm, err |
| 439 | } |
| 440 | |
| 441 | // Cookie returns the named cookie provided in the request. |
| 442 | func (c *Context) Cookie(name string) (*http.Cookie, error) { |
no outgoing calls