using Microsoft.AspNet.Authentication; using Microsoft.AspNet.Http; namespace OAuth.AspNet.AuthServer { /// /// Provides context information when handling an OAuth authorization code grant. /// public class OAuthGrantAuthorizationCodeContext : BaseValidatingTicketContext { /// /// Initializes a new instance of the class /// /// /// /// public OAuthGrantAuthorizationCodeContext(HttpContext context, OAuthAuthorizationServerOptions options, AuthenticationTicket ticket) : base(context, options, ticket) { } } }