PackageCatalog.PackageInstalling Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Indique qu’un package d’application est en cours d’installation.
// Register
event_token PackageInstalling(TypedEventHandler<PackageCatalog, PackageInstallingEventArgs const&> const& handler) const;
// Revoke with event_token
void PackageInstalling(event_token const* cookie) const;
// Revoke with event_revoker
PackageCatalog::PackageInstalling_revoker PackageInstalling(auto_revoke_t, TypedEventHandler<PackageCatalog, PackageInstallingEventArgs const&> const& handler) const;
public event TypedEventHandler<PackageCatalog,PackageInstallingEventArgs> PackageInstalling;
function onPackageInstalling(eventArgs) { /* Your code */ }
packageCatalog.addEventListener("packageinstalling", onPackageInstalling);
packageCatalog.removeEventListener("packageinstalling", onPackageInstalling);
- or -
packageCatalog.onpackageinstalling = onPackageInstalling;
Public Custom Event PackageInstalling As TypedEventHandler(Of PackageCatalog, PackageInstallingEventArgs)
Type d'événement
Remarques
Si l’objet PackageCatalog est obtenu à l’aide d’OpenForCurrentUser, des événements de package sont reçus pour tous les packages installés pour l’utilisateur actuel.
Si l’objet PackageCatalog est obtenu à l’aide d’OpenForCurrentPackage, des événements de package sont reçus pour le package actuel ou ses packages associés, tels que les packages facultatifs.