How to get properties of a class in WinRT

Igor Kulman picture Igor Kulman · Nov 2, 2012 · Viewed 9.4k times · Source

I am writing a Windows 8 application in C# and XAML. I have a class with many properties of the same type that are set in the constructor the same way. Instead of writing and assignment for each of the properties by hand I want to get a list of all the properties of certain type on my class and set them all in a foreach.

In "normal" .NET I would write this

var properties = this.GetType().GetProperties();
foreach (var property in properties)
{
    if (property.PropertyType == typeof(Tuple<string,string>))
    property.SetValue(this, j.GetTuple(property.Name));
}

where j is a parameter of my constructor. In WinRT the GetProperties() does not exist. Intellisense for this.GetType(). does not show anything useful I could use.

Answer

Thomas Levesque picture Thomas Levesque · Nov 2, 2012

You need to use GetRuntimeProperties instead of GetProperties:

var properties = this.GetType().GetRuntimeProperties();
// or, if you want only the properties declared in this class:
// var properties = this.GetType().GetTypeInfo().DeclaredProperties;
foreach (var property in properties)
{
    if (property.PropertyType == typeof(Tuple<string,string>))
    property.SetValue(this, j.GetTuple(property.Name));
}