Exemple #1
0
 public void Cache()
 {
     Externs.IOSUCacheInterstitial(InterstitialPtr);
 }
Exemple #2
0
 // Show the banner view on the screen.
 public void Show()
 {
     Externs.IOSUShowInterstitial(InterstitialPtr);
 }
Exemple #3
0
 // Determines whether the banner has loaded.
 public bool IsLoaded()
 {
     return(Externs.IOSUInterstitialReady(InterstitialPtr));
 }
Exemple #4
0
 public void ShowAdWithAdName(string adName)
 {
     Externs.IOSUShowInterstitialWithAdName(InterstitialPtr, adName);
 }
Exemple #5
0
 public void DisableNetwork(string adName)
 {
     Externs.IOSUDisableNetworkInterstitial(InterstitialPtr, adName);
 }
Exemple #6
0
 public void SetAutoCache(bool autoCache)
 {
     Externs.IOSUSetAutoCacheInterstitial(InterstitialPtr, autoCache);
 }