Esempio n. 1
0
 /// <summary>
 /// Gets a list of friends for a given user using the specified options.
 /// </summary>
 /// <param name="options">The options for the call.</param>
 public TwitterUserListResponse GetList(TwitterFriendsListOptions options)
 {
     return(TwitterUserListResponse.ParseResponse(Raw.GetList(options)));
 }
Esempio n. 2
0
 /// <summary>
 /// Gets a list of friends for a given user using the default options.
 /// </summary>
 /// <param name="screenName">The screen name of the user.</param>
 public TwitterUserListResponse GetList(string screenName)
 {
     return(TwitterUserListResponse.ParseResponse(Raw.GetList(screenName)));
 }
 /// <summary>
 /// Gets a list of friends for a given user using the default options.
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 /// <param name="options">The options for the call.</param>
 public TwitterUserListResponse GetListFromUserId(long userId, TwitterFollowersListOptions options)
 {
     return(TwitterUserListResponse.ParseJson(Raw.GetListFromUserId(userId, options)));
 }
Esempio n. 4
0
 /// <summary>
 /// Gets a list of friends for a given user using the default options.
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 public TwitterUserListResponse GetList(long userId)
 {
     return(TwitterUserListResponse.ParseResponse(Raw.GetList(userId)));
 }
 /// <summary>
 /// Gets a list of friends for a given user using the specified options.
 /// </summary>
 /// <param name="screenName">The screen name of the user.</param>
 /// <param name="options">The options for the call.</param>
 public TwitterUserListResponse GetListFromScreenName(string screenName, TwitterFollowersListOptions options)
 {
     return(TwitterUserListResponse.ParseJson(Raw.GetListFromScreenName(screenName, options)));
 }