up vote 3 down vote favorite
share [g+] share [fb]

Is there an attribute that hides a member (specifically a property) from typeof(MyType).GetProperties() in .net?

I'm looking for a quick fix - i.e. not creating custom attributes etc..

thanks

link|improve this question

61% accept rate
feedback

4 Answers

up vote 7 down vote accepted

No.

Reflection allows one to see everything, including members marked private.

(In the end reflection uses the same metadata that the CLR, including the JIT, uses.)

link|improve this answer
feedback

That particular overload of GetProperties (without parameters) only returns the public properties. So you could mark the property as private/internal. Otherwise, I concur with Richard above.

link|improve this answer
feedback

Have a look into PropertyDescriptor instead of PropertyInfo.

These can be provided by overriding the 2 Properties methods in a derived class of TypeConverter.

With a little bit of ingenuity, you can pretty much make it do anything.

I currently use this to provide a flat list of properties for various cultures and values for translation purposes, and feed this to a PropertyGrid, while the class structure looks like:

class TagName
{
  Culture culture;
  string content;
}

[TypeConverter(typeof(TagConverter))]
class Tag
{
  TagName[] tagNames;
}

Within the PropertyDescriptor you have complete control how values are set and get via a specific PropertyDescriptor instance.

link|improve this answer
interesting, thanks – flesh Mar 3 '09 at 13:29
Very interesting stuff indeed :) – leppie Mar 3 '09 at 13:42
feedback

Had it been possible, Microsoft would have been the first to do it themselves for .NET Assemblies :).

link|improve this answer
Given much of the source to .NET is available, that must be a political view. – Richard Mar 3 '09 at 12:02
Source is available in the first place because of reflection. They know that they can't hide the source. – Aamir Mar 3 '09 at 12:58
Then again, Microsoft themselves designed reflection. If they wanted to hide their code, they could have. – Tor Haugen Mar 3 '09 at 13:04
That was probably due to industry pressure. But well, this is a separate discussion. – Aamir Mar 3 '09 at 13:10
Microsoft has no reason to try and hide the .NET BCL. They do, after all, have lawyers :) [Ability to see does not mean legality to use.] – pst Aug 25 '11 at 21:27
feedback

Your Answer

 
or
required, but never shown

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