We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
config.Interceptors.AddTyped<TimerInterceptorAttribute>((AspectPredicate)(method => { Type declaringType = method.DeclaringType; string name = declaringType.Name; if (declaringType.IsGenericType) name = name.Split('`')[0]; Console.WriteLine("Class:" + name); return name.Matches("*DCache") || (declaringType.FullName ?? declaringType.Name + "." + declaringType.Name).Matches( "*DCache"); })); 输出的class发现不全,导致无法aop
The text was updated successfully, but these errors were encountered:
麻烦补充下,没匹配到的class大概是什么样的,列举几个例子即可
Sorry, something went wrong.
没匹配的都是.net core 没有注册到容器里面的
那是正常的。。
能兼容这种方式吗
需要自己用AOP的原始API去创建代理
No branches or pull requests
The text was updated successfully, but these errors were encountered: