|
Lean
$LEAN_TAG$
|
Wrapper on the API for downloading data for an algorithm. More...
Public Member Functions | |
| string | Download (string address, IEnumerable< KeyValuePair< string, string >> headers, string userName, string password) |
| Method for downloading data for an algorithm More... | |
| byte[] | DownloadBytes (string address, IEnumerable< KeyValuePair< string, string >> headers, string userName, string password) |
| Method for downloading data for an algorithm that can be read from a stream More... | |
Wrapper on the API for downloading data for an algorithm.
Definition at line 22 of file IDownloadProvider.cs.
| string QuantConnect.Interfaces.IDownloadProvider.Download | ( | string | address, |
| IEnumerable< KeyValuePair< string, string >> | headers, | ||
| string | userName, | ||
| string | password | ||
| ) |
Method for downloading data for an algorithm
| address | Source URL to download from |
| headers | Headers to pass to the site |
| userName | Username for basic authentication |
| password | Password for basic authentication |
Implemented in QuantConnect.Api.Api.
| byte [] QuantConnect.Interfaces.IDownloadProvider.DownloadBytes | ( | string | address, |
| IEnumerable< KeyValuePair< string, string >> | headers, | ||
| string | userName, | ||
| string | password | ||
| ) |
Method for downloading data for an algorithm that can be read from a stream
| address | Source URL to download from |
| headers | Headers to pass to the site |
| userName | Username for basic authentication |
| password | Password for basic authentication |
Implemented in QuantConnect.Api.Api.