示例#1
0
 /// <summary>
 /// Returns a collection of user objects that the authenticating user is blocking.
 /// </summary>
 /// <param name="tokens">The tokens.</param>
 /// <param name="options">The options.</param>
 /// <returns></returns>
 public static TwitterResponse <TwitterUserCollection> Blocking(OAuthTokens tokens, BlockingOptions options)
 {
     Commands.BlockingCommand command = new Commands.BlockingCommand(tokens, options);
     return(Core.CommandPerformer.PerformAction(command));
 }
示例#2
0
 /// <summary>
 /// Returns a collection of user objects that the authenticating user is blocking.
 /// </summary>
 /// <param name="tokens">The tokens.</param>
 /// <param name="options">The options.</param>
 /// <returns></returns>
 public static TwitterResponse<TwitterUserCollection> Blocking(OAuthTokens tokens, BlockingOptions options)
 {
     Commands.BlockingCommand command = new Commands.BlockingCommand(tokens, options);
     return Core.CommandPerformer<TwitterUserCollection>.PerformAction(command);
 }