Class PackageManagerEventArgs

Definition

Namespace:
Tizen.Applications
Assembly:
Tizen.Applications.PackageManager.dll

PackageManagerEventArgs class. This class is an event arguments of the InstallProgressChanged, UninstallProgressChanged, and UpdateProgressChanged events.

C#
Copy
public class PackageManagerEventArgs : EventArgs
Inheritance
object
System.EventArgs
PackageManagerEventArgs

Properties

View Source

PackageId

Package ID to be installed, uninstalled, or updated.

Declaration
C#
Copy
public string PackageId { get; }
Property Value
Type Description
string
View Source

PackageType

Type of the package to be installed, uninstalled, or updated.

Declaration
C#
Copy
public PackageType PackageType { get; }
Property Value
Type Description
PackageType
View Source

Progress

Progress for the request being processed by the package manager (in percent).

Declaration
C#
Copy
public int Progress { get; }
Property Value
Type Description
int
View Source

State

Current state of the request to the package manager.

Declaration
C#
Copy
public PackageEventState State { get; }
Property Value
Type Description
PackageEventState