Пример #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. Leave null for defaults.</param>
 /// <returns></returns>
 public static async Task<TwitterResponse<TwitterUserCollection>> BlockingAsync(OAuthTokens tokens, BlockingOptions options = null)
 {
     return await Core.CommandPerformer.PerformAction(new Commands.BlockingCommand(tokens, options));
 }        
Пример #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. Leave null for defaults.</param>
 /// <returns></returns>
 public static async Task <TwitterResponse <TwitterUserCollection> > BlockingAsync(OAuthTokens tokens, BlockingOptions options = null)
 {
     return(await Core.CommandPerformer.PerformAction(new Commands.BlockingCommand(tokens, options)));
 }