HeaderToString get all header as string.
()
| 301 | |
| 302 | // HeaderToString get all header as string. |
| 303 | func (r *Response) HeaderToString() string { |
| 304 | if r.Response == nil { |
| 305 | return "" |
| 306 | } |
| 307 | return convertHeaderToString(r.Header) |
| 308 | } |
nothing calls this directly
no test coverage detected