Adding an OnException attribute using PostSharp - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T18:06:46Zhttp://stackoverflow.com/feeds/question/352527http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/352527/adding-an-onexception-attribute-using-postsharp3Adding an OnException attribute using PostSharpqui2008-12-09T11:56:21Z2008-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#3538860Answer by Joel Lucsy for Adding an OnException attribute using PostSharpJoel Lucsy2008-12-09T19:18:28Z2008-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#3538892Answer by Ryan Cook for Adding an OnException attribute using PostSharpRyan Cook2008-12-09T19:18:57Z2008-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>