vote up 4 vote down star
1

I have this:

public string Log
        {
            get { return log; }
            protected set
            {
                if (log != value)
                {
                    MarkModified(PropertyNames.Log, log);
                    log = value;
                }
            }

        }

And my utility class for databinding does this:

PropertyInfo pi = ReflectionHelper.GetPropertyInfo(boundObjectType, sourceProperty);

if (!pi.CanWrite)
                SetReadOnlyCharacteristics(boundEditor);

But PropertyInfo.CanWrite does not care whether the set is publicly accessible, only that it exists.

How can I determine if there's a public set, not just any set?

flag

5 Answers

vote up 1 vote down check

An alternative to the suggested changes to ReflectionHelper in other answers is to call pi.GetSetMethod(false) and see if the result is null.

link|flag
vote up 1 vote down

You need to use the BindingFlags. Something like

PropertyInfo property = type.GetProperty("MyProperty", BindingFlags.Public | BindingFlags.SetProperty | BindingFlags.Instance);
link|flag
vote up 1 vote down

Call GetSetMethod on PropertyInfo, obtain MethodInfo and examine its properties, like IsPublic.

link|flag
vote up 0 vote down

Inside your ReflectionHelper.GetPropertyInfo(), you presumably to a boundObjectType.GetType().GetProperties(), where the BindingFlags parameter apparently includes BindingFlags.NonPublic. You want to specify just BindingFlags.Public

link|flag
This won't work, property can be public, while its "set" can be private or internal. – Ilya Ryzhenkov Oct 9 '08 at 15:23
vote up 0 vote down

Well it's a little hard to tell since you have a "ReflectionHelper" class where we cannot see the source. However, my first guess is that you aren't properly setting the BindingFlags attribute when you call Type.GetProperty. You need to OR in the Public enumeration flag to ensure that only Public values are returned.

link|flag

Your Answer

Get an OpenID
or

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