Пример #1
0
 public static void showMoreApps()
 {
     if (!CBBinding.checkInitialized())
     {
         return;
     }
     CBBinding._plugin.Call("showMoreApps", new object[0]);
 }
Пример #2
0
 public static void destroy()
 {
     if (!CBBinding.checkInitialized())
     {
         return;
     }
     CBBinding._plugin.Call("destroy", new object[0]);
     CBBinding.initialized = false;
 }
Пример #3
0
 public static void pause(bool paused)
 {
     if (!CBBinding.checkInitialized())
     {
         return;
     }
     CBBinding._plugin.Call("pause", new object[]
     {
         paused
     });
 }
Пример #4
0
 public static void forceOrientation(ScreenOrientation orient)
 {
     if (!CBBinding.checkInitialized())
     {
         return;
     }
     CBBinding._plugin.Call("forceOrientation", new object[]
     {
         orient.ToString()
     });
 }
Пример #5
0
 public static void cacheInterstitial(string location)
 {
     if (!CBBinding.checkInitialized())
     {
         return;
     }
     if (location == null)
     {
         location = string.Empty;
     }
     CBBinding._plugin.Call("cacheInterstitial", new object[]
     {
         location
     });
 }
Пример #6
0
 public static bool hasCachedInterstitial(string location)
 {
     if (!CBBinding.checkInitialized())
     {
         return(false);
     }
     if (location == null)
     {
         location = string.Empty;
     }
     if (location == null)
     {
         location = string.Empty;
     }
     return(CBBinding._plugin.Call <bool>("hasCachedInterstitial", new object[]
     {
         location
     }));
 }
Пример #7
0
 public static bool isImpressionVisible()
 {
     return(CBBinding.checkInitialized() && CBManager.isImpressionVisible());
 }
Пример #8
0
 public static bool onBackPressed()
 {
     return(CBBinding.checkInitialized() && CBBinding._plugin.Call <bool>("onBackPressed", new object[0]));
 }
Пример #9
0
 public static bool hasCachedMoreApps()
 {
     return(CBBinding.checkInitialized() && CBBinding._plugin.Call <bool>("hasCachedMoreApps", new object[0]));
 }