BoxKite.Twitter.TweetExtensions.GetRetweets C# (CSharp) Метод

GetRetweets() публичный статический Метод

Gets the Retweets of a particular tweet
ref: https://dev.twitter.com/docs/api/1.1/get/statuses/retweets/%3Aid
public static GetRetweets ( this session, long tweetId, int count = 20 ) : Task>
session this
tweetId long
count int
Результат Task>
        public async static Task<TwitterResponseCollection<Tweet>> GetRetweets(this ITwitterSession session, long tweetId, int count = 20)
        {
            var parameters = new TwitterParametersCollection
                             {
                                 {"count", count.ToString()},
                             };
            var path = TwitterApi.Resolve("/1.1/statuses/retweets/{0}.json", tweetId);
            return await session.GetAsync(path, parameters)
                .ContinueWith(c => c.MapToMany<Tweet>());
        }

Same methods

TweetExtensions::GetRetweets ( this session, Tweet tweet, int count = 20 ) : Task>