NativeAdsManagerV2.ErrorOccurred Evento

Definizione

Generato quando un oggetto NativeAdV2 rileva un errore operativo.

// Register
event_token ErrorOccurred(EventHandler<NativeAdErrorEventArgs> const& handler) const;

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

// Revoke with event_revoker
ErrorOccurred_revoker ErrorOccurred(auto_revoke_t, EventHandler<NativeAdErrorEventArgs> const& handler) const;
public event System.EventHandler<NativeAdErrorEventArgs> ErrorOccurred;
function onErrorOccurred(eventArgs) { /* Your code */ }
nativeAdsManagerV2.addEventListener("erroroccurred", onErrorOccurred);
nativeAdsManagerV2.removeEventListener("erroroccurred", onErrorOccurred);
- or -
nativeAdsManagerV2.onerroroccurred = onErrorOccurred;
Public Custom Event ErrorOccurred As EventHandler(Of NativeAdErrorEventArgs) 

Tipo evento

System.EventHandler<NativeAdErrorEventArgs>

Si applica a

Vedi anche