Beispiel #1
0
        /// <summary>
        /// Show user objects of up to 100 members who retweeted the status.
        /// </summary>
        /// <param name="tokens">The tokens.</param>
        /// <param name="statusId">The status id.</param>
        /// <param name="options">The options.</param>
        /// <returns>A collection of user objects.</returns>
        public static TwitterResponse<TwitterUserCollection> RetweetedBy(OAuthTokens tokens, decimal statusId, RetweetedByOptions options)
        {
            Commands.RetweetedByCommand command = new Commands.RetweetedByCommand(tokens, statusId, options);

            return Core.CommandPerformer.PerformAction(command);
        }
Beispiel #2
0
 /// <summary>
 /// Show user objects of up to 100 members who retweeted the status.
 /// </summary>
 /// <param name="tokens">The tokens.</param>
 /// <param name="statusId">The status id.</param>
 /// <param name="options">The options. Leave null for defaults.</param>
 /// <returns>A collection of user objects.</returns>
 public static async Task<TwitterResponse<TwitterUserCollection>> RetweetedByAsync(decimal statusId, OAuthTokens tokens, RetweetedByOptions options = null)
 {
     return await Core.CommandPerformer.PerformAction(new Commands.RetweetedByCommand(tokens, statusId, options));
 }        
        /// <summary>
        /// Show user objects of up to 100 members who retweeted the status.
        /// </summary>
        /// <param name="tokens">The tokens.</param>
        /// <param name="statusId">The status id.</param>
        /// <param name="options">The options.</param>
        /// <returns>A collection of user objects.</returns>
        public static TwitterResponse <TwitterUserCollection> RetweetedBy(OAuthTokens tokens, decimal statusId, RetweetedByOptions options)
        {
            Commands.RetweetedByCommand command = new Commands.RetweetedByCommand(tokens, statusId, options);

            return(Core.CommandPerformer.PerformAction(command));
        }
 /// <summary>
 /// Show user objects of up to 100 members who retweeted the status.
 /// </summary>
 /// <param name="tokens">The tokens.</param>
 /// <param name="statusId">The status id.</param>
 /// <param name="options">The options. Leave null for defaults.</param>
 /// <returns>A collection of user objects.</returns>
 public static async Task <TwitterResponse <TwitterUserCollection> > RetweetedByAsync(decimal statusId, OAuthTokens tokens, RetweetedByOptions options = null)
 {
     return(await Core.CommandPerformer.PerformAction(new Commands.RetweetedByCommand(tokens, statusId, options)));
 }