TweetSharp text truncated

102 Views Asked by At

im trying to use tweetsharp to search some particular tweets. My code is working well except it will retrieve truncated text.

It will be like:results

Here is my code:

public List<Tweets> serarch()
        {
            List<Tweets> tlist = new List<Tweets>();
            var service = new TwitterService("ck", "cs");



            service.AuthenticateWith("tk", "ts");

            var options = new SearchOptions { Q = "#sexualassault" };

            var tweets = service.Search(options);



            foreach (var tweet in tweets.Statuses)
            {


                if (tlist.Count == 50)
                    break;
                else
                {
                    tlist.Add(new Tweets {
                        Name = tweet.User.Name,
                        Text = tweet.Text

                });
                }
            }
            return tlist;
        }
0

There are 0 best solutions below