Skip to content

RewardedInterstitialAdLoadCallback

The RewardedInterstitialAdLoadCallback class is used to listen to the load outcome of a RewardedInterstitialAd load request.

Properties

on_ad_loaded / OnAdLoaded

Triggered when the ad is loaded successfully. Receives the loaded RewardedInterstitialAd instance.

var on_ad_loaded: Callable # Receives RewardedInterstitialAd
public Action<RewardedInterstitialAd> OnAdLoaded { get; set; }

on_ad_failed_to_load / OnAdFailedToLoad

Triggered when the load request fails. Receives a LoadAdError detailing the load error.

var on_ad_failed_to_load: Callable # Receives LoadAdError
public Action<LoadAdError> OnAdFailedToLoad { get; set; }