Dump return the string content that have been dumped for the request. `Request.Dump` or `Request.DumpXXX` MUST have been called.
()
| 264 | // Dump return the string content that have been dumped for the request. |
| 265 | // `Request.Dump` or `Request.DumpXXX` MUST have been called. |
| 266 | func (r *Response) Dump() string { |
| 267 | return r.Request.getDumpBuffer().String() |
| 268 | } |
| 269 | |
| 270 | // GetStatus returns the response status. |
| 271 | func (r *Response) GetStatus() string { |