SetOutputDirectory set output directory that response will be downloaded to.
(dir string)
| 263 | // SetOutputDirectory set output directory that response will |
| 264 | // be downloaded to. |
| 265 | func (c *Client) SetOutputDirectory(dir string) *Client { |
| 266 | c.outputDirectory = dir |
| 267 | return c |
| 268 | } |
| 269 | |
| 270 | // SetCertFromFile helps to set client certificates from cert and key file. |
| 271 | func (c *Client) SetCertFromFile(certFile, keyFile string) *Client { |
no outgoing calls