Example #1
0
        /// <summary>
        /// Ends a timed event specified by the event name or ID, along with parameters.
        /// </summary>
        /// <param name="eventId">The event name or ID.</param>
        /// <param name="parameters">The parameters to update the event with.</param>
        public static void EndTimedEvent(string eventId, IDictionary <string, string> parameters)
        {
#if WINDOWS_PHONE || __ANDROID__ || __IOS__
            NativeParameterCollection p = GetParameters(parameters);
            if (p == null)
            {
                EndTimedEvent(eventId);
            }
            else
            {
                NativeFlurry.EndTimedEvent(eventId, p);
            }
#endif
        }
Example #2
0
        /// <summary>
        /// Ends a timed event specified by the event name or ID.
        /// </summary>
        /// <param name="eventId">The event name or ID.</param>
        public static void EndTimedEvent(string eventId)
        {
#if WINDOWS_PHONE || __ANDROID__ || __IOS__
            NativeFlurry.EndTimedEvent(eventId);
#endif
        }