/// <include file='TwitterUser.xml' path='TwitterUser/Show[@name="Common"]/*'/> /// <include file='TwitterUser.xml' path='TwitterUser/Show[@name="ByUsernameWithTokensAndOptions"]/*'/> public static TwitterResponse <TwitterUser> Show(OAuthTokens tokens, string username, OptionalProperties options) { Commands.ShowUserCommand command = new Commands.ShowUserCommand(tokens, 0, username, options); return(Core.CommandPerformer.PerformAction(command)); }
/// <include file='TwitterUser.xml' path='TwitterUser/Show[@name="Common"]/*'/> /// <include file='TwitterUser.xml' path='TwitterUser/Show[@name="ByIDWithTokensAndOptions"]/*'/> public static TwitterResponse <TwitterUser> Show(OAuthTokens tokens, decimal id, OptionalProperties options) { Commands.ShowUserCommand command = new Commands.ShowUserCommand(tokens, id, string.Empty, options); return(Core.CommandPerformer.PerformAction(command)); }