Ejemplo n.º 1
0
 /// <summary>
 /// Gets a represenation of the authenticated user (requires an access token).
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <returns>Returns an instance of <see cref="TwitterVerifyCredentialsResponse"/> representing the response.</returns>
 /// <see>
 ///     <cref>https://dev.twitter.com/rest/reference/get/account/verify_credentials</cref>
 /// </see>
 public TwitterVerifyCredentialsResponse VerifyCredentials(TwitterVerifyCrendetialsOptions options)
 {
     return(TwitterVerifyCredentialsResponse.ParseResponse(Raw.VerifyCredentials(options)));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Gets a represenation of the authenticated user (requires an access token).
 /// </summary>
 /// <returns>Returns an instance of <see cref="TwitterVerifyCredentialsResponse"/> representing the response.</returns>
 /// <see>
 ///     <cref>https://dev.twitter.com/rest/reference/get/account/verify_credentials</cref>
 /// </see>
 public TwitterVerifyCredentialsResponse VerifyCredentials()
 {
     return(TwitterVerifyCredentialsResponse.ParseResponse(Raw.VerifyCredentials()));
 }