String encodes the value v as the header string value
(v string)
| 50 | |
| 51 | // String encodes the value v as the header string value |
| 52 | func (h HeaderValue) String(v string) { |
| 53 | h.modifyHeader(v) |
| 54 | } |
| 55 | |
| 56 | // Byte encodes the value v as a query string value |
| 57 | func (h HeaderValue) Byte(v int8) { |