-api-id | -api-type |
---|---|
P:Windows.ApplicationModel.Package.InstallDate |
winrt property |
Windows Phone only. Gets the date the application package was installed on the user's phone.
The date the application package was installed on the user's phone.
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;
This API is not implemented and will throw an exception if called.