Exemplo n.º 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);
        }
Exemplo n.º 2
0
 public void Track(TrackingEvent info)
 {
 }
Exemplo n.º 3
0
 public static void Track(TrackingEvent info)
 {
     _impl.Track(info);
 }