Example #1
0
 public static void WillDismissModal(this IGADCustomEventBannerDelegate This, GADCustomEventBanner customEvent)
 {
     if (customEvent == null)
     {
         throw new ArgumentNullException("customEvent");
     }
     MonoTouch.ObjCRuntime.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("customEventBannerWillDismissModal:"), customEvent.Handle);
 }
		public static void DidClickInAd (this IGADCustomEventBannerDelegate This, GADCustomEventBanner customEvent, global::MonoTouch.UIKit.UIView view)
		{
			if (customEvent == null)
				throw new ArgumentNullException ("customEvent");
			if (view == null)
				throw new ArgumentNullException ("view");
			MonoTouch.ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("customEventBanner:clickDidOccurInAd:"), customEvent.Handle, view.Handle);
		}
		public static void DidFailAd (this IGADCustomEventBannerDelegate This, GADCustomEventBanner 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 ("customEventBanner:didFailAd:"), customEvent.Handle, error.Handle);
		}
Example #4
0
 public static void DidClickInAd(this IGADCustomEventBannerDelegate This, GADCustomEventBanner customEvent, global::MonoTouch.UIKit.UIView view)
 {
     if (customEvent == null)
     {
         throw new ArgumentNullException("customEvent");
     }
     if (view == null)
     {
         throw new ArgumentNullException("view");
     }
     MonoTouch.ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr(This.Handle, Selector.GetHandle("customEventBanner:clickDidOccurInAd:"), customEvent.Handle, view.Handle);
 }
Example #5
0
 public static void DidFailAd(this IGADCustomEventBannerDelegate This, GADCustomEventBanner 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("customEventBanner:didFailAd:"), customEvent.Handle, error.Handle);
 }
Example #6
0
 public virtual void WillLeaveApplication(GADCustomEventBanner customEvent)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
Example #7
0
 public virtual void DidDismissModal(GADCustomEventBanner customEvent)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
Example #8
0
 public virtual void DidClickInAd(GADCustomEventBanner customEvent, global::MonoTouch.UIKit.UIView view)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
Example #9
0
 public virtual void DidFailAd(GADCustomEventBanner customEvent, NSError error)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
		public static void WillLeaveApplication (this IGADCustomEventBannerDelegate This, GADCustomEventBanner customEvent)
		{
			if (customEvent == null)
				throw new ArgumentNullException ("customEvent");
			MonoTouch.ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (This.Handle, Selector.GetHandle ("customEventBannerWillLeaveApplication:"), customEvent.Handle);
		}
		public virtual void WillLeaveApplication (GADCustomEventBanner customEvent)
		{
			throw new You_Should_Not_Call_base_In_This_Method ();
		}
		public virtual void DidDismissModal (GADCustomEventBanner customEvent)
		{
			throw new You_Should_Not_Call_base_In_This_Method ();
		}
		public virtual void DidClickInAd (GADCustomEventBanner customEvent, global::MonoTouch.UIKit.UIView view)
		{
			throw new You_Should_Not_Call_base_In_This_Method ();
		}
		public virtual void DidFailAd (GADCustomEventBanner customEvent, NSError error)
		{
			throw new You_Should_Not_Call_base_In_This_Method ();
		}