我冒险进入一些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
我必须承认我对此很新,但这似乎是一个有趣的概念,我想我只需指向正确的方向
最佳答案 我通过扩展OnExceptionAspect来实现它:
[Serializable]
public sealed class LogExceptionAttribute : OnExceptionAspect
{
public override void OnException(MethodExecutionEventArgs eventArgs)
{
//do some logging here
}
}
原帖:
它希望您添加Multicast属性:
[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