我想要像
这样的自定义函数属性[FunctionName("Function1"),Authentication]
public static IActionResult Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)]HttpRequest req, TraceWriter log)
{
}
[Authentication]
是我的习惯
Authentication
实施FunctionInvocationFilterAttribute
。
如果Authentication
失败,我希望直接返回IActionResult
或HttpResponse
。
我该怎么做?