C# Class SevenUpdate.InstallProgressChangedEventArgs

Inheritance: System.EventArgs
Datei anzeigen Open project: robertbaker/SevenUpdate Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
InstallProgressChangedEventArgs ( ) : System

Initializes a new instance of the InstallProgressChangedEventArgs class.

InstallProgressChangedEventArgs ( string updateName, int progress, int updatesComplete, int totalUpdates ) : System

Initializes a new instance of the InstallProgressChangedEventArgs class.

Method Details

InstallProgressChangedEventArgs() public method

Initializes a new instance of the InstallProgressChangedEventArgs class.
public InstallProgressChangedEventArgs ( ) : System
return System

InstallProgressChangedEventArgs() public method

Initializes a new instance of the InstallProgressChangedEventArgs class.
public InstallProgressChangedEventArgs ( string updateName, int progress, int updatesComplete, int totalUpdates ) : System
updateName string The name of the update currently being installed.
progress int The progress percentage of the installation.
updatesComplete int The number of updates that have been installed so far.
totalUpdates int The total number of updates to install.
return System