//----------------------------------------------------------------------- // // Copyright (c) Andrew Arnott. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.OAuth2.Messages { using System; using System.Collections.Generic; using System.Linq; using System.Text; /// /// A message sent by a web application Client to the AuthorizationServer /// via the user agent to obtain authorization from the user and prepare /// to issue an access token to the client if permission is granted. /// [Serializable] internal class EndUserAuthorizationImplicitRequestC : EndUserAuthorizationImplicitRequest { /// /// Initializes a new instance of the class. /// /// The authorization server. internal EndUserAuthorizationImplicitRequestC(AuthorizationServerDescription authorizationServer) : base(authorizationServer.AuthorizationEndpoint, authorizationServer.Version) { } } }