Files
yavsc/Yavsc/AuthorizationServer/AuthServer/TokenEndpointRequestCustomExtension.cs
2017-06-08 00:26:29 +02:00

18 lines
488 B
C#

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