SetBoundary sets the multipart boundary.
(b string)
| 306 | |
| 307 | // SetBoundary sets the multipart boundary. |
| 308 | func (r *Request) SetBoundary(b string) *Request { |
| 309 | r.boundary = b |
| 310 | return r |
| 311 | } |
| 312 | |
| 313 | // Referer returns the Referer header set in the Request. |
| 314 | func (r *Request) Referer() string { |
no outgoing calls