Пример #1
0
        /// <summary>
        /// Returns an collection of user ids the authenticating user is blocking.
        /// </summary>
        /// <param name="tokens">The tokens.</param>
        /// <param name="options">The options.</param>
        /// <returns>A collection of user ids.</returns>
        public static TwitterResponse <TwitterIdCollection> BlockingIds(OAuthTokens tokens, OptionalProperties options)
        {
            Commands.BlockingIdsCommand command = new Commands.BlockingIdsCommand(tokens, options);

            return(Core.CommandPerformer.PerformAction(command));
        }
Пример #2
0
        /// <summary>
        /// Returns an collection of user ids the authenticating user is blocking.
        /// </summary>
        /// <param name="tokens">The tokens.</param>
        /// <param name="options">The options.</param>
        /// <returns>A collection of user ids.</returns>
        public static TwitterResponse<TwitterIdCollection> BlockingIds(OAuthTokens tokens, OptionalProperties options)
        {
            Commands.BlockingIdsCommand command = new Commands.BlockingIdsCommand(tokens, options);

            return Core.CommandPerformer<TwitterIdCollection>.PerformAction(command);
        }