Compartilhar via


InterstitialAd.AdReady Evento

Definição

Gerado quando o anúncio intersticiais está pronto para ser mostrado.

// Register
event_token AdReady(EventHandler<IInspectable> const& handler) const;

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

// Revoke with event_revoker
InterstitialAd::AdReady_revoker AdReady(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> AdReady;
function onAdReady(eventArgs) { /* Your code */ }
interstitialAd.addEventListener("adready", onAdReady);
interstitialAd.removeEventListener("adready", onAdReady);
- or -
interstitialAd.onadready = onAdReady;
Public Custom Event AdReady As EventHandler(Of Object) 

Tipo de evento

Comentários

Para obter instruções passo a passo e exemplos de código que demonstram como mostrar um anúncio intersticial, consulte Anúncios intersticiais e Exemplos de publicidade no GitHub.

Aplica-se a

Confira também