public ResponseInfoClient(ResponseInfoClientType type, IntPtr ptr)
 {
     if (type == ResponseInfoClientType.AdLoaded)
     {
         this.adFormat   = adFormat;
         iosResponseInfo = Externs.GADUGetResponseInfo(ptr);
     }
     else if (type == ResponseInfoClientType.AdError)
     {
         iosResponseInfo = Externs.GADUGetAdErrorResponseInfo(ptr);
     }
 }
Example #2
0
 public ResponseInfoClient(ResponseInfoClientType type, AndroidJavaObject androidJavaObject)
 {
     androidResponseInfo = androidJavaObject.Call <AndroidJavaObject>("getResponseInfo");
 }