Beispiel #1
0
 /// <summary>
 /// Alias of <code>Show</code>.
 /// </summary>
 public TwitterGetUserResponse GetUser(string screenName, bool includeEntities)
 {
     return(TwitterGetUserResponse.ParseResponse(Raw.GetUser(screenName, includeEntities)));
 }
Beispiel #2
0
 /// <summary>
 /// Alias of <code>Show</code>.
 /// </summary>
 public TwitterGetUserResponse GetUser(string screenName)
 {
     return(TwitterGetUserResponse.ParseResponse(Raw.GetUser(screenName, false)));
 }
Beispiel #3
0
 /// <summary>
 /// Alias of <code>Show</code>.
 /// </summary>
 public TwitterGetUserResponse GetUser(long userId)
 {
     return(TwitterGetUserResponse.ParseResponse(Raw.GetUser(userId, false)));
 }
Beispiel #4
0
 /// <summary>
 /// Alias of <code>Show</code>.
 /// </summary>
 public TwitterGetUserResponse GetUser(long userId, bool includeEntities)
 {
     return(TwitterGetUserResponse.ParseResponse(Raw.GetUser(userId, includeEntities)));
 }
 /// <summary>
 /// Gets information about 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="TwitterGetUserResponse"/> representing the response.</returns>
 public TwitterGetUserResponse GetUser(TwitterGetUserOptions options)
 {
     return(TwitterGetUserResponse.ParseResponse(Raw.GetUser(options)));
 }