using Microsoft.AspNet.Http; namespace OAuth.AspNet.AuthServer { /// /// Data object used by TokenEndpointRequest which contains parameter information when the "grant_type" is unrecognized. /// public class TokenEndpointRequestCustomExtension { /// /// The parameter information when the "grant_type" is unrecognized. /// public IReadableStringCollection Parameters { get; set; } } }