This repository was archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathadmobads.cs
186 lines (146 loc) · 6.62 KB
/
admobads.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
using System;
using System.Drawing;
using MonoTouch.Foundation;
using MonoTouch.ObjCRuntime;
using MonoTouch.UIKit;
using MonoTouch.CoreGraphics;
namespace GoogleAdMobAds {
[BaseType (typeof (UIView))]
interface GADBannerView {
//@property (nonatomic, copy) NSString *adUnitID;
[Export ("adUnitID", ArgumentSemantic.Copy)]
string AdUnitID { get; set; }
//@property (nonatomic, assign) UIViewController *rootViewController;
[Export ("rootViewController", ArgumentSemantic.Assign)]
UIViewController RootViewController { get; set; }
//@property (nonatomic, assign) NSObject<GADBannerViewDelegate> *delegate;
[Wrap ("WeakDelegate")]
GADBannerViewDelegate Delegate { get; set; }
//@property (nonatomic, assign) NSObject<GADBannerViewDelegate> *delegate;
[Export ("delegate", ArgumentSemantic.Assign), NullAllowed]
NSObject WeakDelegate { get; set; }
//- (void)loadRequest:(GADRequest *)request;
[Export ("loadRequest:")]
void LoadRequest ([NullAllowed] GADRequest request);
//@property (nonatomic, readonly) BOOL hasAutoRefreshed;
[Export ("hasAutoRefreshed")]
bool HasAutoRefreshed { get; }
[Export ("initWithFrame:")]
IntPtr Constructor (RectangleF frame);
}
//@protocol GADBannerViewDelegate <NSObject>
[BaseType (typeof (NSObject))]
[Model]
interface GADBannerViewDelegate {
//- (void)adViewDidReceiveAd:(GADBannerView *)view;
[Export ("adViewDidReceiveAd:")]
void AdViewDidReceiveAd (GADBannerView view);
//- (void)adView:(GADBannerView *)view didFailToReceiveAdWithError:(GADRequestError *)error;
[Export ("adView:didFailToReceiveAdWithError:")]
void AdView (GADBannerView view, GADRequestError error);
//- (void)adViewWillPresentScreen:(GADBannerView *)adView;
[Export ("adViewWillPresentScreen:")]
void AdViewWillPresentScreen (GADBannerView adView);
//- (void)adViewWillDismissScreen:(GADBannerView *)adView;
[Export ("adViewWillDismissScreen:")]
void AdViewWillDismissScreen (GADBannerView adView);
//- (void)adViewDidDismissScreen:(GADBannerView *)adView;
[Export ("adViewDidDismissScreen:")]
void AdViewDidDismissScreen (GADBannerView adView);
//- (void)adViewWillLeaveApplication:(GADBannerView *)adView;
[Export ("adViewWillLeaveApplication:")]
void adViewWillLeaveApplication (GADBannerView adView);
}
//@interface GADInterstitial : NSObject
[BaseType (typeof (NSObject))]
interface GADInterstitial {
//@property (nonatomic, copy) NSString *adUnitID;
[Export ("adUnitID", ArgumentSemantic.Copy)]
string AdUnitID { get; set; }
//@property (nonatomic, assign) NSObject<GADInterstitialDelegate> *delegate;
[Wrap ("WeakDelegate")]
GADInterstitialDelegate Delegate { get; set; }
//@property (nonatomic, assign) NSObject<GADInterstitialDelegate> *delegate;
[Export ("delegate", ArgumentSemantic.Assign), NullAllowed]
NSObject WeakDelegate { get; set; }
//- (void)loadRequest:(GADRequest *)request;
[Export ("loadRequest:")]
void LoadRequest (GADRequest request);
//- (void)loadAndDisplayRequest:(GADRequest *)request usingWindow:(UIWindow *)window initialImage:(UIImage *)image;
[Export ("loadAndDisplayRequest:usingWindow:initialImage:")]
void LoadAndDisplayRequest (GADRequest request, UIWindow window, UIImage image);
//@property (nonatomic, readonly) BOOL isReady;
[Export ("isReady")]
bool IsReady { get; }
//- (void)presentFromRootViewController:(UIViewController *)rootViewController;
[Export ("presentFromRootViewController:")]
void PresentFromRootViewController (UIViewController rootViewController);
}
//@protocol GADInterstitialDelegate <NSObject>
[BaseType (typeof (NSObject))]
[Model]
interface GADInterstitialDelegate {
//- (void)interstitialDidReceiveAd:(GADInterstitial *)ad;
[Export ("interstitialDidReceiveAd:")]
void interstitialDidReceiveAd (GADInterstitial ad);
//- (void)interstitial:(GADInterstitial *)ad didFailToReceiveAdWithError:(GADRequestError *)error;
[Export ("interstitial:didFailToReceiveAdWithError:")]
void Interstitial (GADInterstitial ad, GADRequestError error);
//- (void)interstitialWillPresentScreen:(GADInterstitial *)ad;
[Export ("interstitialWillPresentScreen:")]
void InterstitialWillPresentScreen (GADInterstitial ad);
//- (void)interstitialWillDismissScreen:(GADInterstitial *)ad;
[Export ("interstitialWillDismissScreen:")]
void InterstitialWillDismissScreen (GADInterstitial ad);
//- (void)interstitialDidDismissScreen:(GADInterstitial *)ad;
[Export ("interstitialDidDismissScreen:")]
void InterstitialDidDismissScreen (GADInterstitial ad);
//- (void)interstitialWillLeaveApplication:(GADInterstitial *)ad;
[Export ("interstitialWillLeaveApplication:")]
void InterstitialWillLeaveApplication (GADInterstitial ad);
}
//@interface GADRequest : NSObject <NSCopying>
[BaseType (typeof (NSObject))]
interface GADRequest {
//+ (GADRequest *)request;
[Static, Export ("request")]
GADRequest Request ();
//@property (nonatomic, retain) NSDictionary *additionalParameters;
[Export ("additionalParameters", ArgumentSemantic.Retain)]
NSDictionary AdditionalParameters { get; set; }
//+ (NSString *)sdkVersion;
[Static, Export ("sdkVersion")]
string SdkVersion ();
//@property (nonatomic, retain) NSArray *testDevices;
[Export ("testDevices", ArgumentSemantic.Retain)]
string [] TestDevices { get; set; }
//@property (nonatomic, assign) GADGender gender;
[Export ("gender", ArgumentSemantic.Assign)]
GADGender Gender { get; set; }
//@property (nonatomic, retain) NSDate *birthday;
[Export ("birthday", ArgumentSemantic.Retain)]
NSDate Birthday { get; set; }
//tk tk tk @TODO: SetBirthda and SetLocationy ? Typo source?
//- (void)setBirthdayWithMonth:(NSInteger)m day:(NSInteger)d year:(NSInteger)y;
[Export ("setBirthdayWithMonth:day:year:")]
void SetBirthda (int m, int d, int y);
//- (void)setLocationWithLatitude:(CGFloat)latitude longitude:(CGFloat)longitude accuracy:(CGFloat)accuracyInMeters;
[Export ("setLocationWithLatitude:longitude:accuracy:")]
void SetLocationy (float latitude, float longitude, float accuracyInMeters);
//- (void)setLocationWithDescription:(NSString *)locationDescription;
[Export ("setLocationWithDescription:")]
void SetLocationWithDescription (string locationDescription);
//@property (nonatomic, retain) NSMutableArray *keywords;
[Export ("keywords", ArgumentSemantic.Retain), NullAllowed]
string [] keywords { get; set; }
//- (void)addKeyword:(NSString *)keyword;
[Export ("addKeyword:")]
void AddKeyword (string keyword);
//@property (nonatomic, getter=isTesting) BOOL testing;
[Export ("testing")]
bool Testing { [Bind ("isTesting")] get; set; }
}
[BaseType (typeof (NSError))]
interface GADRequestError {
}
}