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

15 lines
399 B
C#

using System.Threading.Tasks;
namespace OAuth.AspNet.AuthServer
{
public interface IAuthenticationTokenProvider
{
void Create(AuthenticationTokenCreateContext context);
Task CreateAsync(AuthenticationTokenCreateContext context);
void Receive(AuthenticationTokenReceiveContext context);
Task ReceiveAsync(AuthenticationTokenReceiveContext context);
}
}