Exemplo n.º 1
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)));
 }
Exemplo n.º 2
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)));
 }
Exemplo n.º 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>
 public TwitterUserListResponse GetList(long userId)
 {
     return(TwitterUserListResponse.ParseResponse(Raw.GetList(userId)));
 }