Dev2.Instrumentation.Tracker.TrackEvent C# (CSharp) Method

TrackEvent() public static method

Track events being used from within your application
public static TrackEvent ( TrackerEventGroup eventGroup, TrackerEventName eventName, string eventValue = null ) : void
eventGroup TrackerEventGroup 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.
eventName TrackerEventName 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.
eventValue string An optional value which is related to your event and you would like to store.
return void
        public static void TrackEvent(TrackerEventGroup eventGroup, TrackerEventName eventName, string eventValue = null)
        {
#if ! DEBUG
            TrackEvent(eventGroup, eventName.ToString(), eventValue);
#endif
        }

Same methods

Tracker::TrackEvent ( TrackerEventGroup eventGroup, string customText, string eventValue = "" ) : void