13 lines
417 B
C#
13 lines
417 B
C#
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
namespace isnd.Authorization
|
|
{
|
|
internal class ValidApiKeyRequirementHandler : AuthorizationHandler<ValidApiKeyRequirement>
|
|
{
|
|
protected override Task HandleRequirementAsync(AuthorizationHandlerContext context, ValidApiKeyRequirement requirement)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
} |