Boundary returns the multipart boundary used by the Request.
()
| 301 | |
| 302 | // Boundary returns the multipart boundary used by the Request. |
| 303 | func (r *Request) Boundary() string { |
| 304 | return r.boundary |
| 305 | } |
| 306 | |
| 307 | // SetBoundary sets the multipart boundary. |
| 308 | func (r *Request) SetBoundary(b string) *Request { |
no outgoing calls