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