NativeAdsManager.ErrorOccurred 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当 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 。