.NET 自定义中间件 判断是否存在 AllowAnonymousAttribute 特性 来判断是否需要身份验证
publicTaskInvokeAsync(HttpContextcontext){//获取终点路由特性varendpointFeature=context.Features.Get();//获取是否定义了特性varattribute=endpointFeature?.Endpoint?.Metadata?.GetMetadata();if(attribute!=null){logger.LogI