Пример #1
0
 public static void TrackEvent(string eventName, EventProperties properties, Flags flags)
 {
     if (properties == null)
     {
         TrackEvent(eventName, flags);
     }
     else
     {
         AnalyticsInternal.TrackEventWithProperties(eventName, properties, (int)flags);
     }
 }
Пример #2
0
 public static void TrackEvent(string eventName, IDictionary <string, string> properties)
 {
     if (properties == null)
     {
         TrackEvent(eventName);
     }
     else
     {
         AnalyticsInternal.TrackEventWithProperties(eventName, properties);
     }
 }