Twitterizer 2 Documentation
Show Method (id)
NamespacesTwitterizerTwitterUserShow(Decimal)
Returns extended information of a given user, specified by ID or screen name as per the required id parameter. The author's most recent status will be returned inline.
Declaration Syntax
C#Visual Basic
public static TwitterResponse<TwitterUser> Show(
	decimal id
)
Public Shared Function Show ( _
	id As Decimal _
) As TwitterResponse(Of TwitterUser)
Parameters
id (Decimal)
The user id.
Return Value
A new instance of the TwitterUser class.
Remarks
This method interacts with the users/show API endpoint. Documentation can be found here: http://dev.twitter.com/doc/get/users/show
Examples
CopyC#
// Declare the user's id variable
decimal userId = 1;

// Declare our user variable and fetch the user's details
TwitterResponse<TwitterUser> user = TwitterUser.Show(userId);
CopyVB.NET
'-- Declare the user's id variable
Dim userId As decimal = 1

'-- Declare our user variable and fetch the user's details
Dim user As TwitterResponse(Of TwitterUser) = TwitterUser.Show(userId)
Exceptions
ExceptionCondition
ArgumentNullExceptionIndicates that a required argument was not supplied.
ArgumentExceptionIndicates that an argument supplied was not valid.
[!:Twitterizer.CommandValidationException<T>]Indicates that a command failed pre-execution validation.

Assembly: Twitterizer2 (Module: Twitterizer2) Version: 2.3.2.40349 (2.3.2.0)