コード例 #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)));
 }
コード例 #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)));
 }
コード例 #3
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>
 /// <param name="options">The options for the call.</param>
 public TwitterUserListResponse GetListFromUserId(long userId, TwitterFollowersListOptions options)
 {
     return(TwitterUserListResponse.ParseJson(Raw.GetListFromUserId(userId, options)));
 }
コード例 #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)));
 }
コード例 #5
0
 /// <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)));
 }