Example #1
0
        public SocialClient(string secret, string hostname)
        {
            _secret = secret;

            _client     = RestService.For <ISocialClient>(hostname);
            _queueItems = new ConcurrentQueue <SocialQueuedItem>();
            Timer timerQueueSendKin = new Timer(200);

            timerQueueSendKin.Elapsed += TimerQueueSendKinOnElapsed;
            timerQueueSendKin.Start();
        }
Example #2
0
 public ClientTests()
 {
     _client = new T();
     _client.Auth(GetAuthContext());
 }