/// <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 specified options. /// </summary> /// <param name="options">The options for the call.</param> public TwitterUserListResponse GetList(TwitterFriendsListOptions options) { return(TwitterUserListResponse.ParseResponse(Raw.GetList(options))); }
/// <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))); }