다음을 통해 공유


NativeAdsManagerV2.ErrorOccurred 이벤트

정의

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

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

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

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

이벤트 유형

적용 대상

추가 정보