示例#1
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)));
 }
示例#2
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)));
 }
 /// <summary>
 /// Gets a list of IDs representing the friends of a given user.
 /// </summary>
 /// <param name="screenName">The screen name of the user.</param>
 /// <param name="options">The options for the call.</param>
 public TwitterIdsResponse GetIdsFromScreenName(string screenName, TwitterFollowersIdsOptions options)
 {
     return(TwitterIdsResponse.ParseJson(Raw.GetIdsFromScreenName(screenName, options)));
 }
示例#4
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)));
 }
 /// <summary>
 /// Gets a list of IDs representing the friends of a given user.
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 /// <param name="options">The options for the call.</param>
 public TwitterIdsResponse GetIdsFromUserId(long userId, TwitterFollowersIdsOptions options)
 {
     return(TwitterIdsResponse.ParseJson(Raw.GetIdsFromUserId(userId, options)));
 }