HTTP Operations aliases

Built-In

Contains functionality related to HTTP operations.

Download

DownloadFile(string, DownloadFileSettings) Downloads the specified resource over HTTP to a temporary file with specified settings.
DownloadFile(string, FilePath, DownloadFileSettings) Downloads the specified resource over HTTP to the specified output path and settings.
DownloadFile(string, FilePath) Downloads the specified resource over HTTP to the specified output path.
DownloadFile(string) Downloads the specified resource over HTTP to a temporary file.
DownloadFile(Uri, DownloadFileSettings) Downloads the specified resource over HTTP to a temporary file with specified settings.
DownloadFile(Uri, FilePath, DownloadFileSettings) Downloads the specified resource over HTTP to the specified output path.
DownloadFile(Uri) Downloads the specified resource over HTTP to a temporary file.

Upload

UploadFile(string, byte[], string) Uploads the specified byte array via a HTTP POST to the specified uri using multipart/form-data.
UploadFile(string, FilePath) Uploads the specified file via a HTTP POST to the specified uri using multipart/form-data.
UploadFile(Uri, byte[], string, UploadFileSettings) Uploads the specified byte array via a HTTP POST to the specified uri using multipart/form-data.
UploadFile(Uri, FilePath, UploadFileSettings) Uploads the specified file via a HTTP POST to the specified uri using multipart/form-data.