How do I tell if a class property has a public set (.NET)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T03:53:54Z http://stackoverflow.com/feeds/question/187742 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/187742/how-do-i-tell-if-a-class-property-has-a-public-set-net 4 How do I tell if a class property has a public set (.NET)? Josh Kodroff 2008-10-09T15:14:54Z 2008-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#187769 1 Answer by Darren Kopp for How do I tell if a class property has a public set (.NET)? Darren Kopp 2008-10-09T15:20:55Z 2008-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#187775 0 Answer by James Curran for How do I tell if a class property has a public set (.NET)? James Curran 2008-10-09T15:21:30Z 2008-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#187778 1 Answer by Ilya Ryzhenkov for How do I tell if a class property has a public set (.NET)? Ilya Ryzhenkov 2008-10-09T15:22:11Z 2008-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#187793 1 Answer by Jon Skeet for How do I tell if a class property has a public set (.NET)? Jon Skeet 2008-10-09T15:24:13Z 2008-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#187794 0 Answer by Nick for How do I tell if a class property has a public set (.NET)? Nick 2008-10-09T15:24:14Z 2008-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>