Exemplo n.º 1
0
 public static void AnalyticsEvent(string eventName, IDictionary <string, object> data)
 {
     EventStream.Publish(new AnalyticsEvent {
         eventName = eventName, data = data
     });
 }
Exemplo n.º 2
0
 public static void LogReceived(string log, string stackTrace, LogType type)
 {
     EventStream.Publish(new ReceivedLog {
         log = log, stackTrace = stackTrace, type = type
     });
 }