コード例 #1
0
 public static void TrackEventWithProperties(string eventName, EventProperties properties)
 {
     if (!_warningLogged)
     {
         Debug.LogWarning("Warning: Strongly typed properties are not supported on UWP platform. " +
                          "All property values will be converted to strings for this and all the future calls.");
         _warningLogged = true;
     }
     UWPAnalytics.TrackEvent(eventName, properties.GetRawObject());
 }
コード例 #2
0
 public static void TrackEventWithProperties(IntPtr transmissionTarget, string eventName, EventProperties properties)
 {
     appcenter_unity_transmission_target_track_event_with_typed_props(transmissionTarget, eventName, properties.GetRawObject());
 }
コード例 #3
0
 public static void TrackEventWithProperties(string eventName, EventProperties properties)
 {
     _analytics.CallStatic("trackEvent", eventName, properties.GetRawObject());
 }
コード例 #4
0
 public static void TrackEventWithProperties(string eventName, EventProperties properties)
 {
     appcenter_unity_analytics_track_event_with_typed_properties(eventName, properties.GetRawObject());
 }
コード例 #5
0
 public static void TrackEventWithProperties(string eventName, EventProperties properties)
 {
     appcenter_unity_analytics_track_event_with_typed_properties(eventName, properties.GetRawObject(), (int)Flags.PersistenceNormal);
 }