Exemplo n.º 1
0
        /// <summary>
        /// Show user ids 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 ids.</returns>
        public static TwitterResponse<UserIdCollection> RetweetedByIds(OAuthTokens tokens, decimal statusId, RetweetedByIdsOptions options)
        {
            Commands.RetweetedByIdsCommand command = new Commands.RetweetedByIdsCommand(tokens, statusId, options);

            return Core.CommandPerformer.PerformAction(command);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Show user ids 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 ids.</returns>
 public static async Task<TwitterResponse<UserIdCollection>> RetweetedByIdsAsync(decimal statusId, OAuthTokens tokens, RetweetedByIdsOptions options = null)
 {
     return await Core.CommandPerformer.PerformAction(new Commands.RetweetedByIdsCommand(tokens, statusId, options));
 }        
Exemplo n.º 3
0
        /// <summary>
        /// Show user ids 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 ids.</returns>
        public static TwitterResponse <UserIdCollection> RetweetedByIds(OAuthTokens tokens, decimal statusId, RetweetedByIdsOptions options)
        {
            Commands.RetweetedByIdsCommand command = new Commands.RetweetedByIdsCommand(tokens, statusId, options);

            return(Core.CommandPerformer.PerformAction(command));
        }
Exemplo n.º 4
0
 /// <summary>
 /// Show user ids 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 ids.</returns>
 public static async Task <TwitterResponse <UserIdCollection> > RetweetedByIdsAsync(decimal statusId, OAuthTokens tokens, RetweetedByIdsOptions options = null)
 {
     return(await Core.CommandPerformer.PerformAction(new Commands.RetweetedByIdsCommand(tokens, statusId, options)));
 }