Adding an OnException attribute using PostSharp - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T18:06:46Z http://stackoverflow.com/feeds/question/352527 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/352527/adding-an-onexception-attribute-using-postsharp 3 Adding an OnException attribute using PostSharp qui 2008-12-09T11:56:21Z 2008-12-09T20:36:48Z <p>I am adventuring into some AOP and it seems with .NET PostSharp is the way to go. </p> <p>I want to do some simple logging to the db when an exception occurs. However I am finding it difficult to find any real solid examples of using PostSharp beyond the basics. I tried the following:</p> <pre><code>[Serializable] public sealed class LogExceptionAttribute : ExceptionHandlerAspect { public override void OnException(MethodExecutionEventArgs eventArgs) { //do some logging here } } </code></pre> <p>And then attaching a <code>[LogException]</code> attribute to a method</p> <p>But I get a compile error:</p> <pre><code>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 </code></pre> <p>I have to confess I am very new to this, but it seems like an interesting concept, I think i just need to be pointed in the right direction</p> http://stackoverflow.com/questions/352527/adding-an-onexception-attribute-using-postsharp/353886#353886 0 Answer by Joel Lucsy for Adding an OnException attribute using PostSharp Joel Lucsy 2008-12-09T19:18:28Z 2008-12-09T19:18:28Z <p>I've used OnMethodBoundaryAspect instead of ExceptionHandlerAspect without problems. And I've not made mine sealed either.</p> http://stackoverflow.com/questions/352527/adding-an-onexception-attribute-using-postsharp/353889#353889 2 Answer by Ryan Cook for Adding an OnException attribute using PostSharp Ryan Cook 2008-12-09T19:18:57Z 2008-12-09T20:36:48Z <p>I got it to work by extending the <code>OnExceptionAspect</code>:</p> <pre><code>[Serializable] public sealed class LogExceptionAttribute : OnExceptionAspect { public override void OnException(MethodExecutionEventArgs eventArgs) { //do some logging here } } </code></pre> <p><hr /></p> <p><strong>Original Post:</strong></p> <p>It wants you to add the Multicast attribute:</p> <pre><code>[Serializable] [MulticastAttributeUsage(... Add Appropriate MulticastTargets ...)] public sealed class LogExceptionAttribute : ExceptionHandlerAspect { public override void OnException(MethodExecutionEventArgs eventArgs) { //do some logging here } } </code></pre> <p>See this link for more details: <a href="http://doc.postsharp.org/1.0/UserGuide/Laos/Multicasting/Overview.html" rel="nofollow">http://doc.postsharp.org/1.0/UserGuide/Laos/Multicasting/Overview.html</a></p>