Я создавал ActionFilterAttribute для моего проекта .net core 2.0 для фильтрации всех запросов API и авторизации токенов. Моя проблема заключается в том, что если какой-либо пользователь не может получить доступ к API, ActionExecutingContext вернет статус Not Acceptable 406. Есть ли класс для неприемлемого результата. Заранее спасибо.
ActionFilterAttribute
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class)]
public class AuthorizationRequiredAttribute : ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext context)
{
context.Result = //place your code here, which return NotAcceptable Status
base.OnActionExecuting(context);
}
}