//----------------------------------------------------------------------- // // Copyright (c) Andrew Arnott. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.OAuth2.Messages { using System; using System.Collections.Generic; using System.Linq; using System.Text; /// /// A request from the client to the token endpoint for a new access token /// in exchange for a refresh token that the client has previously obtained. /// internal class AccessTokenRefreshRequestC : AccessTokenRefreshRequest { /// /// Initializes a new instance of the class. /// /// The authorization server. internal AccessTokenRefreshRequestC(AuthorizationServerDescription authorizationServer) : base(authorizationServer.TokenEndpoint, authorizationServer.Version) { } } }