Package.InstallDate Property

Definition

Windows Phone only. Gets the date the application package was installed on the user's phone.

public:
 property DateTime InstallDate { DateTime get(); };
DateTime InstallDate();
public System.DateTimeOffset InstallDate { get; }
var dateTime = package.installDate;
Public ReadOnly Property InstallDate As DateTimeOffset

Property Value

The date the application package was installed on the user's phone.

Remarks

Windows Phone 8

If you acquire the Package instance by using the Windows.ApplicationModel.Package.Current property, getting the InstallDate property raises an InvalidCastException. If you want to get the InstallDate property, acquire the Package instance by using the Windows.Phone.Management.Deployment.InstallationManager.FindPackagesForCurrentPublisher method.

using Windows.ApplicationModel;

IEnumerable<Package> packages = Windows.Phone.Management.Deployment.InstallationManager.FindPackagesForCurrentPublisher();
Package package = packages.First();
DateTimeOffset packageInstallDate = package.InstallDate;

Windows 10

This API is not implemented and will throw an exception if called.

Applies to