using Microsoft.AspNet.Authentication; using Microsoft.AspNet.Http; namespace OAuth.AspNet.AuthServer { /// /// Provides context information used when granting an OAuth refresh token. /// public class OAuthGrantRefreshTokenContext : BaseValidatingTicketContext { /// /// Initializes a new instance of the class /// /// /// /// /// public OAuthGrantRefreshTokenContext(HttpContext context, OAuthAuthorizationServerOptions options, AuthenticationTicket ticket, string clientId) : base(context, options, ticket) { ClientId = clientId; } /// /// The OAuth client id. /// public string ClientId { get; private set; } } }