Header returns all values associated with the given header key.
(key string)
| 128 | |
| 129 | // Header returns all values associated with the given header key. |
| 130 | func (r *Request) Header(key string) []string { |
| 131 | return r.header.PeekMultiple(key) |
| 132 | } |
| 133 | |
| 134 | type pair struct { |
| 135 | k []string |
nothing calls this directly
no test coverage detected