Exemplo n.º 1
0
 public static void SetFloat(this DataAnalytics.CustomEvent customEvent, string key, float value)
 {
     customEvent.SetData <float>(key, value);
 }
Exemplo n.º 2
0
 public static void SetString(this DataAnalytics.CustomEvent customEvent, string key, string value)
 {
     customEvent.SetData <string>(key, value);
 }
Exemplo n.º 3
0
 public static void SetInt(this DataAnalytics.CustomEvent customEvent, string key, int value)
 {
     customEvent.SetData <int>(key, value);
 }