NativeAdsManager.ErrorOccurred Event

Definition

Raised when a NativeAd encounters an operational error.

// Register
event_token ErrorOccurred(EventHandler<AdErrorEventArgs> 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<AdErrorEventArgs> const& handler) const;
public event System.EventHandler<AdErrorEventArgs> ErrorOccurred;
function onErrorOccurred(eventArgs) { /* Your code */ }
nativeAdsManager.addEventListener("erroroccurred", onErrorOccurred);
nativeAdsManager.removeEventListener("erroroccurred", onErrorOccurred);
- or -
nativeAdsManager.onerroroccurred = onErrorOccurred;
Public Custom Event ErrorOccurred As EventHandler(Of AdErrorEventArgs) 

Event Type

System.EventHandler<AdErrorEventArgs>

Remarks

Important

The NativeAdsManager class is deprecated. Use NativeAdsManagerV2 instead.

Applies to