DisableAutoDecode disable auto-detect charset and decode to utf-8 (enabled by default).
()
| 831 | |
| 832 | // DisableAutoDecode disable auto-detect charset and decode to utf-8 (enabled by default). |
| 833 | func (c *Client) DisableAutoDecode() *Client { |
| 834 | c.Transport.DisableAutoDecode() |
| 835 | return c |
| 836 | } |
| 837 | |
| 838 | // EnableAutoDecode enable auto-detect charset and decode to utf-8 (enabled by default). |
| 839 | func (c *Client) EnableAutoDecode() *Client { |
no outgoing calls