다음을 통해 공유


NativeAdsManager.ErrorOccurred 이벤트

정의

NativeAd에서 작동 오류가 발생할 때 발생합니다.

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

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

// Revoke with event_revoker
NativeAdsManager::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) 

이벤트 유형

설명

중요

NativeAdsManager 클래스는 더 이상 사용되지 않습니다. 대신 NativeAdsManagerV2 를 사용합니다.

적용 대상