Exemplo n.º 1
0
 /// <summary>
 /// Gets a list of IDs representing the friends of a given user.
 /// </summary>
 /// <param name="screenName">The screen name of the user.</param>
 public TwitterIdsResponse GetIds(string screenName)
 {
     return(TwitterIdsResponse.ParseResponse(Raw.GetIds(screenName)));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Gets a list of IDs representing the friends of a given user.
 /// </summary>
 /// <param name="options">The options for the call.</param>
 public TwitterIdsResponse GetIds(TwitterFriendsIdsOptions options)
 {
     return(TwitterIdsResponse.ParseResponse(Raw.GetIds(options)));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Gets a list of IDs representing the friends of a given user.
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 public TwitterIdsResponse GetIds(long userId)
 {
     return(TwitterIdsResponse.ParseResponse(Raw.GetIds(userId)));
 }