ContentEncoding returns Content-Encoding header value.
()
| 357 | |
| 358 | // ContentEncoding returns Content-Encoding header value. |
| 359 | func (h *RequestHeader) ContentEncoding() []byte { |
| 360 | return peekArgBytes(h.h, strContentEncoding) |
| 361 | } |
| 362 | |
| 363 | // SetContentEncoding sets Content-Encoding header value. |
| 364 | func (h *RequestHeader) SetContentEncoding(contentEncoding string) { |