How to use MethodDecorator.Fody Decorator in another project(如何在另一个项目中使用MethodDecorator.Fody Decorator)
问题描述
我使用Fody Nuget包的方法如下
安装程序包
PM> Install-Package MethodDecorator.Fody
修饰方法
public class BusinessLayerClass { [LogMethod] public string BusinessLayerMethod() { DataLayerClass dataLayerClass = new DataLayerClass(); return dataLayerClass.DataLayerMethod(); } }
编写拦截器
using System; using System.Reflection; [module: LogMethod] // Attribute should be "registered" by adding as module or assembly custom attribute // Any attribute which provides OnEntry/OnExit/OnException with proper args [AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Assembly | AttributeTargets.Module)] public class LogMethodAttribute : Attribute, IMethodDecorator { private MethodBase _method; // instance, method and args can be captured here and stored in attribute instance fields // for future usage in OnEntry/OnExit/OnException public void Init(object instance, MethodBase method, object[] args) { _method = method; } public void OnEntry() { NLogging.Trace("Entering into {0}", _method.Name); } public void OnExit() { NLogging.Trace("Exiting into {0}", _method.Name); } public void OnException(Exception exception) { NLogging.Trace(exception, "Exception {0}", _method.Name); } }
这在同一项目中工作得很好,但当我在另一个项目的另一个方法中使用修饰符[LogMethod]时,此OnEntry()
、OnExit()
、OnException(Exception exception)
方法不激发。
例如:
[LogMethod]
public void Another_Method_In_Seperate_Project()
我添加了对定义了[LogMethod]的项目的引用。
有没有人可以给我一个方法,让我在其他项目中使用相同的实现,而不是在每个项目中实现LogMethodAttribute.cs(其中定义了这个[LogMethod])。
推荐答案
您还需要在其他项目中安装MethodDecorator.Fody
Nuget包(以及依赖项)。您还需要在该项目中添加另一个FodyWeavers.xml
。
这篇关于如何在另一个项目中使用MethodDecorator.Fody Decorator的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在另一个项目中使用MethodDecorator.Fody Decorator
基础教程推荐
- 将 XML 转换为通用列表 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何激活MC67中的红灯 2022-01-01