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); }
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); }
public static void DidDismiss(this IGADCustomEventInterstitialDelegate This, GADCustomEventInterstitial customEvent) { if (customEvent == null) { throw new ArgumentNullException("customEvent"); } MonoTouch.ObjCRuntime.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("customEventInterstitialDidDismiss:"), customEvent.Handle); }
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); }
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); }
public virtual void WillLeaveApplication (GADCustomEventInterstitial customEvent) { throw new You_Should_Not_Call_base_In_This_Method (); }
public virtual void DidDismiss (GADCustomEventInterstitial customEvent) { throw new You_Should_Not_Call_base_In_This_Method (); }
public virtual void DidFailAd (GADCustomEventInterstitial customEvent, NSError error) { throw new You_Should_Not_Call_base_In_This_Method (); }
public virtual void DidReceiveAd (GADCustomEventInterstitial customEvent, NSObject ad) { throw new You_Should_Not_Call_base_In_This_Method (); }
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); }
public virtual void WillLeaveApplication(GADCustomEventInterstitial customEvent) { throw new You_Should_Not_Call_base_In_This_Method(); }
public virtual void DidDismiss(GADCustomEventInterstitial customEvent) { throw new You_Should_Not_Call_base_In_This_Method(); }
public virtual void DidFailAd(GADCustomEventInterstitial customEvent, NSError error) { throw new You_Should_Not_Call_base_In_This_Method(); }
public virtual void DidReceiveAd(GADCustomEventInterstitial customEvent, NSObject ad) { throw new You_Should_Not_Call_base_In_This_Method(); }