Share via


UpdateDownloadProgress Constructors

Definition

Overloads

UpdateDownloadProgress()

Initializes a new instance of the UpdateDownloadProgress class.

UpdateDownloadProgress(String, Nullable<Int32>, Nullable<Double>, Nullable<Double>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the UpdateDownloadProgress class.

UpdateDownloadProgress()

Initializes a new instance of the UpdateDownloadProgress class.

public UpdateDownloadProgress ();
Public Sub New ()

Applies to

UpdateDownloadProgress(String, Nullable<Int32>, Nullable<Double>, Nullable<Double>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the UpdateDownloadProgress class.

public UpdateDownloadProgress (string downloadPhase = default, int? percentComplete = default, double? totalBytesToDownload = default, double? totalBytesDownloaded = default, int? numberOfUpdatesToDownload = default, int? numberOfUpdatesDownloaded = default);
new Microsoft.Azure.Management.EdgeGateway.Models.UpdateDownloadProgress : string * Nullable<int> * Nullable<double> * Nullable<double> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.EdgeGateway.Models.UpdateDownloadProgress
Public Sub New (Optional downloadPhase As String = Nothing, Optional percentComplete As Nullable(Of Integer) = Nothing, Optional totalBytesToDownload As Nullable(Of Double) = Nothing, Optional totalBytesDownloaded As Nullable(Of Double) = Nothing, Optional numberOfUpdatesToDownload As Nullable(Of Integer) = Nothing, Optional numberOfUpdatesDownloaded As Nullable(Of Integer) = Nothing)

Parameters

downloadPhase
String

The download phase. Possible values include: 'Unknown', 'Initializing', 'Downloading', 'Verifying'

percentComplete
Nullable<Int32>

Percentage of completion.

totalBytesToDownload
Nullable<Double>

Total bytes to download.

totalBytesDownloaded
Nullable<Double>

Total bytes downloaded.

numberOfUpdatesToDownload
Nullable<Int32>

Number of updates to download.

numberOfUpdatesDownloaded
Nullable<Int32>

Number of updates downloaded.

Applies to