コード例 #1
0
 public static void RemoveProfileAttributes(string attribute, LLProfileScope scope, params object[] values)
 {
     Localytics.RemoveProfileAttributesFromSetPrivate(Convertor.ToArray(values), attribute, scope);
 }
コード例 #2
0
 public static void TagCustomerLoggedIn(LLCustomer customer, string methodName, NSDictionary attributes)
 {
     Localytics.TagCustomerLoggedInPrivate(customer, methodName, attributes);
 }
コード例 #3
0
 public static void Integrate(string appKey, Foundation.NSDictionary localyticsOptions)
 {
     Localytics.IntegratePrivate(appKey, localyticsOptions);
     NSObject notificationObserver = NSNotificationCenter.DefaultCenter.AddObserver(UIApplication.DidBecomeActiveNotification, (obj) => { });
 }
コード例 #4
0
        public static void TagCustomerLoggedIn(IDictionary <string, object> customerProps, string methodName, NSDictionary attributes)
        {
            var customer = Convertor.toCustomer(customerProps);

            Localytics.TagCustomerLoggedInPrivate(customer, methodName, attributes);
        }
コード例 #5
0
 public static void TagCustomerRegistered(LLCustomer customer, string methodName, NSDictionary attributes)
 {
     Localytics.TagCustomerRegisteredPrivate(customer, methodName, attributes);
 }
コード例 #6
0
 // @required +(void)triggerPlacesNotificationForCampaign:(LLPlacesCampaign * _Nonnull)campaign;
 public static void TriggerPlacesNotificationForCampaign(LLPlacesCampaign campaign)
 {
     Localytics.TriggerPlacesNotificationForCampaign(campaign);
 }
コード例 #7
0
 // @required +(void)tagPlacesPushOpened:(LLPlacesCampaign * _Nonnull)campaign withActionIdentifier:(NSString * _Nonnull)identifier;
 public static void TagPlacesPushOpened(LLPlacesCampaign campaign, string identifier)
 {
     Localytics.TagPlacesPushOpened(campaign, identifier);
 }
コード例 #8
0
 // @required +(void)tagPlacesPushOpened:(LLPlacesCampaign * _Nonnull)campaign;
 public static void TagPlacesPushOpened(LLPlacesCampaign campaign)
 {
     Localytics.TagPlacesPushOpenedPrivate(campaign);
 }