InterstitialAd.ErrorOccurred Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se genera cuando InterstitialAd encuentra un error operativo.
// Register
event_token ErrorOccurred(EventHandler<AdErrorEventArgs> const& handler) const;
// Revoke with event_token
void ErrorOccurred(event_token const* cookie) const;
// Revoke with event_revoker
InterstitialAd::ErrorOccurred_revoker ErrorOccurred(auto_revoke_t, EventHandler<AdErrorEventArgs> const& handler) const;
public event System.EventHandler<AdErrorEventArgs> ErrorOccurred;
function onErrorOccurred(eventArgs) { /* Your code */ }
interstitialAd.addEventListener("erroroccurred", onErrorOccurred);
interstitialAd.removeEventListener("erroroccurred", onErrorOccurred);
- or -
interstitialAd.onerroroccurred = onErrorOccurred;
Public Custom Event ErrorOccurred As EventHandler(Of AdErrorEventArgs)