DownloadProgressChangedEventArgs Constructor
Initializes a new instance of the DownloadProgressChangedEventArgs class that describes the status of downloading files.
Namespace: Microsoft.WindowsAzure.MediaServices.Client
Assembly: Microsoft.WindowsAzure.MediaServices.Client (in Microsoft.WindowsAzure.MediaServices.Client.dll)
Syntax
'Declaration
Public Sub New ( _
bytesDownloaded As Long, _
totalBytes As Long _
)
'Usage
Dim bytesDownloaded As Long
Dim totalBytes As Long
Dim instance As New DownloadProgressChangedEventArgs(bytesDownloaded, _
totalBytes)
public DownloadProgressChangedEventArgs(
long bytesDownloaded,
long totalBytes
)
public:
DownloadProgressChangedEventArgs(
long long bytesDownloaded,
long long totalBytes
)
new :
bytesDownloaded:int64 *
totalBytes:int64 -> DownloadProgressChangedEventArgs
public function DownloadProgressChangedEventArgs(
bytesDownloaded : long,
totalBytes : long
)
Parameters
- bytesDownloaded
Type: System.Int64
Number of bytes downloaded.
- totalBytes
Type: System.Int64
Total number of bytes to download.