QueryHeader query header value by key
(key string)
| 137 | |
| 138 | // QueryHeader query header value by key |
| 139 | func (req *Request) QueryHeader(key string) string { |
| 140 | return req.Header.Get(key) |
| 141 | } |
| 142 | |
| 143 | // PostString returns the first value for the named component of the POST |
| 144 | // or PUT request body. URL query parameters are ignored. |
no test coverage detected