Click or drag to resize

DownloadService Class

The DownloadService object provides a set of APIs that allow app to download any files through a URL securely including auto configure setting file, trust cert file, custom logo file, etc.
Inheritance Hierarchy
SystemObject
  Avaya.ClientServicesDownloadService

Namespace:  Avaya.ClientServices
Assembly:  AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntax
C#
public class DownloadService
Methods
  NameDescription
Public methodDownloadFile(DownloadServiceConfiguration, Uri, String, DownloadServiceDownloadCompletionHandlerFileInfo)
Retrieve FileInfo for downloaded data from URL. This function allows clients to download large files.
Public methodDownloadFile(DownloadServiceConfiguration, Uri, String, DownloadOptionalParameters, DownloadServiceDownloadWithParametersCompletionHandlerFileInfo)
Retrieve FileInfo for downloaded data from URL. This function allows clients to download large files.
Public methodRetrieveDataFromUrl(DownloadServiceConfiguration, Uri, DownloadServiceDownloadCompletionHandlerByte)
Retrieve arbitrary binary data from URL.
Public methodRetrieveDataFromUrl(DownloadServiceConfiguration, Uri, DownloadOptionalParameters, DownloadServiceDownloadWithParametersCompletionHandlerByte)
Retrieve arbitrary binary data from URL.
Public methodRetrieveTextFromUrl(DownloadServiceConfiguration, Uri, DownloadServiceDownloadCompletionHandlerString)
Retrieve text data from URL.
Public methodRetrieveTextFromUrl(DownloadServiceConfiguration, Uri, DownloadOptionalParameters, DownloadServiceDownloadWithParametersCompletionHandlerString)
Retrieve text data from URL.
Top
Remarks
The service is configured with a DownloadServiceConfiguration object.
See Also