Ejemplo n.º 1
0
 /// <summary>
 /// Gets a list of followers of the user with the specified <paramref name="screenName"/>.
 /// </summary>
 /// <param name="screenName">The screen name of the user.</param>
 /// <returns>An instance of <see cref="TwitterGetUsersResponse"/> representing the response.</returns>
 public TwitterGetUsersResponse GetList(string screenName)
 {
     return(TwitterGetUsersResponse.ParseResponse(Raw.GetList(screenName)));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Gets a list of followers of the user matching the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for the request to the API.</param>
 /// <returns>An instance of <see cref="TwitterGetUsersResponse"/> representing the response.</returns>
 public TwitterGetUsersResponse GetList(TwitterFollowersListOptions options)
 {
     return(TwitterGetUsersResponse.ParseResponse(Raw.GetList(options)));
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Gets a list of followers of the user with the specified <paramref name="userId"/>.
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 /// <returns>An instance of <see cref="TwitterGetUsersResponse"/> representing the response.</returns>
 public TwitterGetUsersResponse GetList(long userId)
 {
     return(TwitterGetUsersResponse.ParseResponse(Raw.GetList(userId)));
 }