How do I tell if a class property has a public set (.NET)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T03:53:54Zhttp://stackoverflow.com/feeds/question/187742http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/187742/how-do-i-tell-if-a-class-property-has-a-public-set-net4How do I tell if a class property has a public set (.NET)?Josh Kodroff2008-10-09T15:14:54Z2008-10-09T15:24:14Z
<p>I have this:</p>
<pre><code>public string Log
{
get { return log; }
protected set
{
if (log != value)
{
MarkModified(PropertyNames.Log, log);
log = value;
}
}
}
</code></pre>
<p>And my utility class for databinding does this:</p>
<pre><code>PropertyInfo pi = ReflectionHelper.GetPropertyInfo(boundObjectType, sourceProperty);
if (!pi.CanWrite)
SetReadOnlyCharacteristics(boundEditor);
</code></pre>
<p>But PropertyInfo.CanWrite does not care whether the set is publicly accessible, only that it exists.</p>
<p>How can I determine if there's a <strong>public</strong> set, not just <strong>any</strong> set?</p>
http://stackoverflow.com/questions/187742/how-do-i-tell-if-a-class-property-has-a-public-set-net/187769#1877691Answer by Darren Kopp for How do I tell if a class property has a public set (.NET)?Darren Kopp2008-10-09T15:20:55Z2008-10-09T15:20:55Z<p>You need to use the <a href="http://msdn.microsoft.com/en-us/library/system.reflection.bindingflags.aspx" rel="nofollow">BindingFlags</a>. Something like </p>
<pre><code>PropertyInfo property = type.GetProperty("MyProperty", BindingFlags.Public | BindingFlags.SetProperty | BindingFlags.Instance);
</code></pre>
http://stackoverflow.com/questions/187742/how-do-i-tell-if-a-class-property-has-a-public-set-net/187775#1877750Answer by James Curran for How do I tell if a class property has a public set (.NET)?James Curran2008-10-09T15:21:30Z2008-10-09T15:21:30Z<p>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</p>
http://stackoverflow.com/questions/187742/how-do-i-tell-if-a-class-property-has-a-public-set-net/187778#1877781Answer by Ilya Ryzhenkov for How do I tell if a class property has a public set (.NET)?Ilya Ryzhenkov2008-10-09T15:22:11Z2008-10-09T15:22:11Z<p>Call GetSetMethod on PropertyInfo, obtain MethodInfo and examine its properties, like IsPublic. </p>
http://stackoverflow.com/questions/187742/how-do-i-tell-if-a-class-property-has-a-public-set-net/187793#1877931Answer by Jon Skeet for How do I tell if a class property has a public set (.NET)?Jon Skeet2008-10-09T15:24:13Z2008-10-09T15:24:13Z<p>An alternative to the suggested changes to ReflectionHelper in other answers is to call <code>pi.GetSetMethod(false)</code> and see if the result is null.</p>
http://stackoverflow.com/questions/187742/how-do-i-tell-if-a-class-property-has-a-public-set-net/187794#1877940Answer by Nick for How do I tell if a class property has a public set (.NET)?Nick2008-10-09T15:24:14Z2008-10-09T15:24:14Z<p>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.</p>