Esempio n. 1
0
 public static bool CanShow(this ICTInAppFCManager This, CTInAppNotification inapp)
 {
     if (inapp == null)
     {
         throw new ArgumentNullException("inapp");
     }
     return(global::ApiDefinition.Messaging.bool_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("canShow:"), inapp.Handle));
 }
Esempio n. 2
0
 public static void DidDismiss(this ICTInAppFCManager This, CTInAppNotification inapp)
 {
     if (inapp == null)
     {
         throw new ArgumentNullException("inapp");
     }
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("didDismiss:"), inapp.Handle);
 }
Esempio n. 3
0
 public static bool HasDailyCapacityMaxedOut(this ICTInAppFCManager This, CTInAppNotification dictionary)
 {
     if (dictionary == null)
     {
         throw new ArgumentNullException("dictionary");
     }
     return(global::ApiDefinition.Messaging.bool_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("hasDailyCapacityMaxedOut:"), dictionary.Handle));
 }
Esempio n. 4
0
 public static void ProcessResponse(this ICTInAppFCManager This, NSDictionary response)
 {
     if (response == null)
     {
         throw new ArgumentNullException("response");
     }
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("processResponse:"), response.Handle);
 }
Esempio n. 5
0
 public static void AttachToHeader(this ICTInAppFCManager This, NSMutableDictionary header)
 {
     if (header == null)
     {
         throw new ArgumentNullException("header");
     }
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("attachToHeader:"), header.Handle);
 }
Esempio n. 6
0
 public static void ChangeUser(this ICTInAppFCManager This)
 {
     global::ApiDefinition.Messaging.void_objc_msgSend(This.Handle, Selector.GetHandle("changeUser"));
 }
Esempio n. 7
0
 public static void ResetSession(this ICTInAppFCManager This)
 {
     global::ApiDefinition.Messaging.void_objc_msgSend(This.Handle, Selector.GetHandle("resetSession"));
 }
Esempio n. 8
0
 public static void CheckUpdateDailyLimits(this ICTInAppFCManager This)
 {
     global::ApiDefinition.Messaging.void_objc_msgSend(This.Handle, Selector.GetHandle("checkUpdateDailyLimits"));
 }
Esempio n. 9
0
 public static void UpdateLimitsPerDay(this ICTInAppFCManager This, int perDay, int perSession)
 {
     global::ApiDefinition.Messaging.void_objc_msgSend_int_int(This.Handle, Selector.GetHandle("updateLimitsPerDay:andPerSession:"), perDay, perSession);
 }