How do you get the all properties of a class and its base classes (up the hierarchy) with Reflection? (C#) - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T22:37:12Zhttp://stackoverflow.com/feeds/question/245055http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/245055/how-do-you-get-the-all-properties-of-a-class-and-its-base-classes-up-the-hierarc5How do you get the all properties of a class and its base classes (up the hierarchy) with Reflection? (C#)Davy82008-10-28T22:08:21Z2008-10-28T22:50:52Z
<p>So what I have right now is something like this:</p>
<pre><code>PropertyInfo[] info = obj.GetType().GetProperties(BindingFlags.Public);
</code></pre>
<p>where <code>obj</code> is some object.</p>
<p>The problem is some of the properties I want aren't in <code>obj.GetType()</code> they're in one of the base classes further up. If I stop the debugger and look at obj, the I have to dig through a few "base" entries to see the properties I want to get at. Is there some binding flag I can set to have it return those or do I have to recursively dig through the <code>Type.BaseType</code> hierarchy and do <code>GetProperties</code> on all of them?</p>
http://stackoverflow.com/questions/245055/how-do-you-get-the-all-properties-of-a-class-and-its-base-classes-up-the-hierarc/245105#245105-1Answer by Terrapin for How do you get the all properties of a class and its base classes (up the hierarchy) with Reflection? (C#)Terrapin2008-10-28T22:22:50Z2008-10-28T22:22:50Z<p>If you access <code>Type.BaseType</code>, you can get the base type. You can recursively access each base type and you'll know when you've hit the bottom when your type is <code>System.Object</code>.</p>
<pre><code>Type type = obj.GetType();
PropertyInfo[] info = type.GetProperties(BindingFlags.Public);
PropertyInfo[] baseProps = type.BaseType.GetProperties(BindingFlags.Public);
</code></pre>
http://stackoverflow.com/questions/245055/how-do-you-get-the-all-properties-of-a-class-and-its-base-classes-up-the-hierarc/245119#2451194Answer by Panos for How do you get the all properties of a class and its base classes (up the hierarchy) with Reflection? (C#)Panos2008-10-28T22:27:34Z2008-10-28T22:50:52Z<p>Use this:</p>
<pre><code>PropertyInfo[] info = obj.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance);
</code></pre>
<p>EDIT: Of course the correct answer is that of <a href="http://stackoverflow.com/questions/245055/how-do-you-get-the-all-properties-of-a-class-and-its-base-classes-up-the-hierar#245131">Jay</a>. <code>GetProperties()</code> without parameters is equivalent to <code>GetProperties(BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static )</code>. The <code>BindingFlags.FlattenHierarchy</code> plays no role here.</p>
http://stackoverflow.com/questions/245055/how-do-you-get-the-all-properties-of-a-class-and-its-base-classes-up-the-hierarc/245131#2451316Answer by Jay Bazuzi for How do you get the all properties of a class and its base classes (up the hierarchy) with Reflection? (C#)Jay Bazuzi2008-10-28T22:32:41Z2008-10-28T22:32:41Z<p>I don't think it's that complicated.</p>
<p>If you remove the <code>BindingFlags</code> parameter to GetProperties, I think you get the results you're looking for:</p>
<pre><code> class B
{
public int MyProperty { get; set; }
}
class C : B
{
public string MyProperty2 { get; set; }
}
static void Main(string[] args)
{
PropertyInfo[] info = new C().GetType().GetProperties();
foreach (var pi in info)
{
Console.WriteLine(pi.Name);
}
}
</code></pre>
<p>produces</p>
<pre>
MyProperty2
MyProperty
</pre>
http://stackoverflow.com/questions/245055/how-do-you-get-the-all-properties-of-a-class-and-its-base-classes-up-the-hierarc/245140#2451400Answer by Nicolas Cadilhac for How do you get the all properties of a class and its base classes (up the hierarchy) with Reflection? (C#)Nicolas Cadilhac2008-10-28T22:35:20Z2008-10-28T22:35:20Z<p>Use:</p>
<pre><code>TypeDescriptor.GetProperties(obj);
</code></pre>
http://stackoverflow.com/questions/245055/how-do-you-get-the-all-properties-of-a-class-and-its-base-classes-up-the-hierarc/245160#2451600Answer by Marc Gravell for How do you get the all properties of a class and its base classes (up the hierarchy) with Reflection? (C#)Marc Gravell2008-10-28T22:43:29Z2008-10-28T22:43:29Z<p>I would tend to agree with Nicolas; unless you know you need reflection, then <code>ComponentModel</code> is a viable alternative, with the advantage that you will get the correct metadata even for runtime models (such as <code>DataView</code>/<code>DataRowView</code>).</p>
<p>For example:</p>
<pre><code> foreach (PropertyDescriptor prop in TypeDescriptor.GetProperties(obj))
{
Console.WriteLine("{0}={1}", prop.Name, prop.GetValue(obj));
}
</code></pre>
<p>As an aside, you can also do some simple <a href="http://www.codeproject.com/KB/cs/HyperPropertyDescriptor.aspx" rel="nofollow">performance tricks</a> with this; you can do the same with reflection and <code>Delegate.CreateDelegate</code>, but there is no centralised place to hide the logic away, unlike <code>TypeDescriptor</code> with a <code>TypeDescriptionProvider</code> (don't worry if these are unfamiliar; you can just use the code "as is" ;-p).</p>