Condividi tramite


LicenseInformation.LicenseChanged Evento

Definizione

Genera un evento di notifica quando lo stato della licenza dell'app cambia.

public:
 virtual event LicenseChangedEventHandler ^ LicenseChanged;
// Register
event_token LicenseChanged(LicenseChangedEventHandler const& handler) const;

// Revoke with event_token
void LicenseChanged(event_token const* cookie) const;

// Revoke with event_revoker
LicenseInformation::LicenseChanged_revoker LicenseChanged(auto_revoke_t, LicenseChangedEventHandler const& handler) const;
public event LicenseChangedEventHandler LicenseChanged;
function onLicenseChanged(eventArgs) { /* Your code */ }
licenseInformation.addEventListener("licensechanged", onLicenseChanged);
licenseInformation.removeEventListener("licensechanged", onLicenseChanged);
- or -
licenseInformation.onlicensechanged = onLicenseChanged;
Public Custom Event LicenseChanged As LicenseChangedEventHandler 

Tipo evento

Commenti

Gli eventi LicenseChanged non sono sempre immediati. Se è stato registrato per l'evento, l'evento deve essere attivato entro un'ora; in caso contrario, dovrebbe verificarsi entro 6 ore. In genere, è consigliabile attendere fino a 6 ore quando si esegue il test con CurrentApp, sapendo che probabilmente richiede meno tempo se l'app ha registrato l'evento.

Windows Phone 8

Questo evento non viene generato in Windows Phone 8.

Si applica a