show/hide this revision's text 2 edited tags
show/hide this revision's text 1

How do I tell if a class property has a public set (.NET)?

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?