Ejemplo n.º 1
0
 public static void WillLeaveApplication(this IGADCustomEventInterstitialDelegate This, GADCustomEventInterstitial customEvent)
 {
     if (customEvent == null)
     {
         throw new ArgumentNullException("customEvent");
     }
     MonoTouch.ObjCRuntime.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("customEventInterstitialWillLeaveApplication:"), customEvent.Handle);
 }
Ejemplo n.º 2
0
 public static void DidFailAd(this IGADCustomEventInterstitialDelegate This, GADCustomEventInterstitial customEvent, NSError error)
 {
     if (customEvent == null)
     {
         throw new ArgumentNullException("customEvent");
     }
     if (error == null)
     {
         throw new ArgumentNullException("error");
     }
     MonoTouch.ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr(This.Handle, Selector.GetHandle("customEventInterstitial:didFailAd:"), customEvent.Handle, error.Handle);
 }
Ejemplo n.º 3
0
 public static void DidReceiveAd(this IGADCustomEventInterstitialDelegate This, GADCustomEventInterstitial customEvent, NSObject ad)
 {
     if (customEvent == null)
     {
         throw new ArgumentNullException("customEvent");
     }
     if (ad == null)
     {
         throw new ArgumentNullException("ad");
     }
     MonoTouch.ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr(This.Handle, Selector.GetHandle("customEventInterstitial:didReceiveAd:"), customEvent.Handle, ad.Handle);
 }