19 lines
608 B
C#
19 lines
608 B
C#
using System.Text.Encodings.Web;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Authentication.OAuth;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
namespace AspNet.Security.OAuth.MyGut
|
|
{
|
|
public class MyGutAuthenticationHandler : OAuthHandler<MyGutAuthenticationOptions>
|
|
{
|
|
public MyGutAuthenticationHandler(
|
|
IOptionsMonitor<MyGutAuthenticationOptions> options,
|
|
ILoggerFactory logger,
|
|
UrlEncoder encoder,
|
|
ISystemClock clock) : base(options, logger, encoder, clock)
|
|
{
|
|
}
|
|
}
|
|
} |