Exemple #1
0
        public void Track(TrackingEvent info)
        {
            if (info == null)
            {
                throw new ArgumentNullException("info");
            }

            var json = info.ToJson();

            ThreadPool.QueueUserWorkItem(
                x => Send((string)x), json);
        }
Exemple #2
0
 public void Track(TrackingEvent info)
 {
 }
Exemple #3
0
 public static void Track(TrackingEvent info)
 {
     _impl.Track(info);
 }