/// <summary> /// Track events being used from within your application /// </summary> /// <param name="eventGroup">The text by which to group your event. If the length of this string and the 'eventName' parameter is greater than 40 it will be truncated. Also ';' (semicolons) and '|' (pipeline) are not to be used inside this parameter.</param> /// <param name="eventName">The text used to describe the feature. If the length of this string and the 'eventGroup' parameter is greater than 40 it will be truncated. Also ';' (semicolons) and '|' (pipeline) are not to be used inside this parameter.</param> /// <param name="eventValue">An optional value which is related to your event and you would like to store.</param> public static void TrackEvent(TrackerEventGroup eventGroup, TrackerEventName eventName, string eventValue = null) { #if !DEBUG TrackEvent(eventGroup, eventName.ToString(), eventValue); #endif }
public static void TrackEvent(TrackerEventGroup eventGroup, TrackerEventName eventName) => TrackEvent(eventGroup, eventName, null);
/// <summary> /// Track events being used from within your application /// </summary> /// <param name="eventGroup">The text by which to group your event. If the length of this string and the 'eventName' parameter is greater than 40 it will be truncated. Also ';' (semicolons) and '|' (pipeline) are not to be used inside this parameter.</param> /// <param name="eventName">The text used to describe the feature. If the length of this string and the 'eventGroup' parameter is greater than 40 it will be truncated. Also ';' (semicolons) and '|' (pipeline) are not to be used inside this parameter.</param> /// <param name="eventValue">An optional value which is related to your event and you would like to store.</param> public static void TrackEvent(TrackerEventGroup eventGroup, TrackerEventName eventName, string eventValue = null) { #if ! DEBUG TrackEvent(eventGroup, eventName.ToString(), eventValue); #endif }
public static void OverriddenTrackEvent(TrackerEventGroup eventGroup, TrackerEventName executed, string eventValue) { #if !DEBUG Perform(() => TBApp.EventTrackTxt(eventGroup.ToString(), executed.ToString(), eventValue, null)); #endif }