NativeAdsManagerV2.ErrorOccurred Event

Definition

Raised when a NativeAdV2 encounters an operational error.

// 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) 

Event Type

System.EventHandler<NativeAdErrorEventArgs>

Applies to

See also