Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm reading Pro C# 2010 and the .Net 4 Platform by Andrew Troelsen.

In Chapter 15 about Attributes exists a note:

Note: For security reasons, it is considered a .Net best practice to design all custom attributes as sealed.

The author doesn't explain why, can someone explain why?

share|improve this question

2 Answers

up vote 11 down vote accepted

CA1813: Avoid unsealed attributes: The .NET Framework class library provides methods for retrieving custom attributes. By default, these methods search the attribute inheritance hierarchy; for example Attribute.GetCustomAttribute searches for the specified attribute type, or any attribute type that extends the specified attribute type. Sealing the attribute eliminates the search through the inheritance hierarchy, and can improve performance.

Ref: http://msdn.microsoft.com/en-us/library/ms182267(v=VS.100).aspx

Attributes are simply metadata discovered at runtime. As it is quoted, if someone else derives from your custom attribute class, by default .NET will find them too, which may imply a security risk if the derived attribute class is modifying the behavior of your original attribute in a way to you never intended to.

Even though performance is the prime reason to seal attribute classes, here is a formidable article dealing with its security side: http://alabaxblog.info/?p=44

share|improve this answer
The quote talks about security reasons, though. – svick Oct 23 '11 at 18:42
@svick, added more info. – Teoman Soygul Oct 23 '11 at 18:51
1  
@TeomanSoygul About performance: I can call Attribute.GetCustomAttribute and pass false as parameter to eliminates the search through the inheritance hierarchy: Attribute.GetCustomAttribute(false) – Acaz Souza Oct 23 '11 at 22:23

Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries just says:

DO seal custom attribute classes, if possible. This makes the look-up for the attribute faster.

I didn't see anything about security in that section, but @Teoman Soygul makes a good point. So I'd agree with Mr. Troelsen.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.