Tweetinvi Update 0.9.7.0
Quick Overview
UserStream Update
In order to add a missing of the UserStream class, Tweetinvi is now handling the AccessRevoked message. This message is sent by Twitter when the Token used by the stream to connect to Twitter is revoked. This message is usually followed by a disconnect message.var us = Stream.CreateUserStream(); us.AccessRevoked += (sender, args) => { Console.WriteLine("Application {0} had its access revoked!", args.Info.ApplicationName); };
MultiThreading Performances
Version 0.9.7.x improved the global performances of WebRequests for highly multi threaded applications.Bug Fixes
- HttpClient WebRequests TaskCancelledException is now correctly Handled