Tweetinvi already implement the LimitReached event:
Receiving this event do not mean that you is not related with Rate Limits but it means that you are trying to get more than 1% of all the Tweets written on Twitter.
For example if you create a Filter stream with lots of famous keywords, you can receive this event.
Tweetinvi will let you know the number of tweets that you missed but obviously cannot give you the missing tweets.
Linvi
var s = Stream.CreateFilteredStream(); s.LimitReached += (sender, args) => { var missedTweets = args.NumberOfTweetsNotReceived; };
For example if you create a Filter stream with lots of famous keywords, you can receive this event.
Tweetinvi will let you know the number of tweets that you missed but obviously cannot give you the missing tweets.
Linvi