vote up 3 vote down star

Given this class

class Foo
{
    // Want to find _bar with reflection
    [SomeAttribute]
    private string _bar;

    public string BigBar
    {
        get { return this._bar; }
    }
}

I want to find the private item _bar that I will mark with a attribute. Is that possible?

I have done this with properties where I have looked for an attribute, but never a private member field.

What are the binding flags that I need to set to get the private fields?

flag

Sounds like you actually just want a private setter. I would apply the attribute to the property and just create the setter as private, then use the below methods to find/update the field. – Nescio Sep 18 '08 at 19:27

5 Answers

vote up 7 vote down check

Use BindingFlags.NonPublic and BindingFlags.Instance flags

Reflection.FieldInfo fields[] = myType.GetFields(BindingFlags.NonPublic | BindingFlags.Instance);
link|flag
I could only get this to work by also supplying the "BindingFlags.Instance" binding flag. – Andy McCluggage Sep 19 '08 at 15:28
Ain't it funny that everyone applauds this wrong answer and the correct answer from Abe Heidebrecht doesn't get any points. – Phil Bachmann Jan 20 at 4:08
I would gladly delete my answer, but it's marked 'accepted'. – Bob King Jan 29 at 19:11
I have fixed your answer. It's too confusing otherwise. Abe Heidebrecht's answer was the most complete though. – lubos hasko Mar 5 at 12:28
Works great - FYI VB.NET version Me.GetType().GetFields(Reflection.BindingFlags.NonPublic Or Reflection.BindingFlags.Instance) – gg May 27 at 7:36
vote up 3 vote down

Yes, however you will need to set your Binding flags to search for private fields (if your looking for the member outside of the class instance).

The binding flag you will need is: System.Reflection.BindingFlags.NonPublic

link|flag
vote up 4 vote down
typeof(MyType).GetField("fieldName", BindingFlags.NonPublic | BindingFlags.Instance)
link|flag
I won't know the name of the field. I want to find it without the name and when the attribute is on it. – David Basarab Sep 18 '08 at 19:22
vote up 7 vote down

You can do it just like with a property:

FieldInfo fi = typeof(Foo).GetField("_bar", BindingFlags.NonPublic | BindingFlags.Instance);
if (fi.GetCustomAttributes(typeof(SomeAttribute)) != null)
    ...
link|flag
vote up 3 vote down

One thing that you need to be aware of when reflecting on private members is that if your application is running in medium trust (as, for instance, when you are running on a shared hosting environment), it won't find them -- the BindingFlags.NonPublic option will simply be ignored.

link|flag

Your Answer

Get an OpenID
or

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