Custom Attributes and Exceptions in .net - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T17:36:19Zhttp://stackoverflow.com/feeds/question/314779http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/314779/custom-attributes-and-exceptions-in-net5Custom Attributes and Exceptions in .netFionn2008-11-24T17:00:49Z2008-11-24T20:05:41Z
<p>Hi,</p>
<p>while writing a custom attribute in C# i was wondering if there are any guidelines or best practices regarding exceptions in attributes.
Should the attribute check the given parameters for validity? Or is this the task of the user of the property?</p>
<p>In a simple test I did the exception was not thrown until i used GetCustomAttributes on a type with an exception throwing attribute.
I just think it's a bit awkward to get an exception from an Attribute only when explicitly asking for them.</p>
<p><hr /></p>
<p>Example Attribute with exception:</p>
<pre><code>[AttributeUsage(AttributeTargets.Interface, AllowMultiple = false, Inherited = false)]
sealed public class MyAttribute : Attribute
{
public string SomeValue { get; private set; }
public MyAttribute(string someValue)
{
if(string.IsNullOrEmpty(someValue))
{
throw new ArgumentNullException("path");
}
if(!someOtherCheck(someValue))
{
throw MyAttributeException("An other error occured");
}
SomeValue = someValue;
}
}
</code></pre>
http://stackoverflow.com/questions/314779/custom-attributes-and-exceptions-in-net/314831#3148315Answer by Jon Skeet for Custom Attributes and Exceptions in .netJon Skeet2008-11-24T17:19:31Z2008-11-24T17:19:31Z<p>Attributes are only actually constructed when you use reflection, so that's the only time you <em>can</em> throw an exception. I can't remember <em>ever</em> using an attribute and having it throw an exception though. Attributes usually provide data rather than real behaviour - I'd expect the code which <em>uses</em> the attribute to provide any validation. I know this isn't like normal encapsulation, but it's the way it tends to be in my experience. </p>
http://stackoverflow.com/questions/314779/custom-attributes-and-exceptions-in-net/314907#3149070Answer by Jeff Yates for Custom Attributes and Exceptions in .netJeff Yates2008-11-24T17:53:55Z2008-11-24T17:53:55Z<p>We have some reasonably complex Attributes in our project, so we include validation of inputs. For example, as part of our I18N and L10N work, we have attributes that perform resource lookups (much like the attributes in the framework that are used to localise Category and Description strings for properties in the designers). These custom attributes have to have some validation in order for them to work.</p>
<p>The simple attributes we have use no validation because we'd rather the consuming code failed, indicating the location of the error.</p>
<p>So, in conclusion, it really depends on the complexity of the attribute; if it is instantiated with one kind of data but expected to provide another (such as in resource lookups), it should contain validation, otherwise, it probably shouldn't.</p>
http://stackoverflow.com/questions/314779/custom-attributes-and-exceptions-in-net/315276#3152761Answer by Marc Gravell for Custom Attributes and Exceptions in .netMarc Gravell2008-11-24T20:05:41Z2008-11-24T20:05:41Z<p>With a few exceptions with compiler-sepcific meaning (such as <code>[PrincipalPermission]</code> etc) attributes can't interact directly with code without being asked to. However, if you use the AOP tool "<a href="http://www.postsharp.org/" rel="nofollow">PostSharp</a>", your aspect attributes <em>can</em> add behaviour to the class. Not simple, but a very useful trick sometimes.</p>