我冒险进入一些AOP,似乎.NET PostSharp是要走的路。
我想在发生异常时对数据库执行一些简单的日志记录。然而,我发现很难找到任何超出基础知识的使用PostSharp的真实例子。我尝试了以下方法:
[Serializable]
public sealed class LogExceptionAttribute : ExceptionHandlerAspect
{
public override void OnException(MethodExecutionEventArgs eventArgs)
{
//do some logging here
}
}
然后将[LogException]
属性附加到方法
但是我收到编译错误:
Error 7 The type "CoDrivrBeta1.Classes.LogExceptionAttribute" or one of its ancestor should be decorated by an instance of MulticastAttributeUsageAttribute. C:\work\CoDrivrBeta1\CoDrivrBeta1\EXEC CoDrivrBeta1
我必须承认我对此很新,但这似乎是一个有趣的概念,我想我只需指向正确的方向
答案 0 :(得分:2)
我通过扩展OnExceptionAspect
:
[Serializable]
public sealed class LogExceptionAttribute : OnExceptionAspect
{
public override void OnException(MethodExecutionEventArgs eventArgs)
{
//do some logging here
}
}
原帖:
它希望您添加多播属性:
[Serializable]
[MulticastAttributeUsage(... Add Appropriate MulticastTargets ...)]
public sealed class LogExceptionAttribute : ExceptionHandlerAspect
{
public override void OnException(MethodExecutionEventArgs eventArgs)
{
//do some logging here
}
}
有关详细信息,请参阅此链接: http://doc.postsharp.org/1.0/UserGuide/Laos/Multicasting/Overview.html
答案 1 :(得分:0)
我使用OnMethodBoundaryAspect而不是ExceptionHandlerAspect没有问题。而且我也没有把我的密封。