473,809 Members | 2,718 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Dynamically setting object properties (Reflection)

In VS2005 (C#) I want to set the properties of an object dynamically at
runtime from an XML configuration file but without having to know the
property name when writing the code. The properties are user-defined classes
so I need to be able to iterate through the properties of each sub-object
and set the property accordingly.

For example, Instead of having to write the code
MyObject.SubObj ectOne.MyString Property = "Some text" I will configure it
like this <Property Name="MyObject. SubObjectOne.My StringProperty"
Value="Some text"/>.

Can someone help me out as to how to do this? I can iterate thru' the
properties of MyObject (using PropertyInfo) but can't see how to iterate
thru' the properties of each sub-object or even how to set the property
value.
Jun 6 '07 #1
2 5926
Check PropertyInfo.Ge tValue and SetValue methods.

GetValue will provide you with sub-object, which you can interate just like
you iterate main object. Note binding flags - most probably you will need
Instance flag and for private properties NonPublic.

HTH
Alex

"chris fellows" <ch**********@n ospam.co.ukwrot e in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
In VS2005 (C#) I want to set the properties of an object dynamically at
runtime from an XML configuration file but without having to know the
property name when writing the code. The properties are user-defined
classes so I need to be able to iterate through the properties of each
sub-object and set the property accordingly.

For example, Instead of having to write the code
MyObject.SubObj ectOne.MyString Property = "Some text" I will configure it
like this <Property Name="MyObject. SubObjectOne.My StringProperty"
Value="Some text"/>.

Can someone help me out as to how to do this? I can iterate thru' the
properties of MyObject (using PropertyInfo) but can't see how to iterate
thru' the properties of each sub-object or even how to set the property
value.


Jun 6 '07 #2
First - I'd advocate PropertyDescrip tor over PropertyInfo so that you
can support "views" rather than just "models"; if you are doing a lot
of this, I can also show you a way to use PropertyDescrip tors to
vastly accelerate the access (reflection is otherwise slow).

Here you go though:

using System;
using System.Windows. Forms;
using System.Componen tModel;
static class Program {
static void Main() {
MyClass1 c1 = new MyClass1();
c1.Nested = new MyClass1();

object obj = c1, value = "NewValue";
string expr = "Nested.InnerIt em.Value";

string[] sections = expr.Split('.') ;
int lastIndex = sections.Length - 1;
// walk to the penultimate property through successive
properties
for (int i = 0; i < lastIndex; i++) {
obj =
TypeDescriptor. GetProperties(o bj)[sections[i]].GetValue(obj);
}
// set the last property
TypeDescriptor. GetProperties(o bj)[sections[lastIndex]].SetValue(obj,
value);

// test it
string newVal = c1.Nested.Inner Item.Value;

}

}
class MyClass1 {
private readonly MyClass2 inner = new MyClass2();
private MyClass1 nested;
public MyClass1 Nested {
get { return nested; }
set { nested = value; }
}
public MyClass2 InnerItem {
get { return inner; }
}
}
class MyClass2 {
private string value;
public string Value {
get { return value; }
set { this.value = value; }
}
}
Jun 7 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
1921
by: Simon Verona | last post by:
I would normally use code such as : Dim Customer as new Customer Dim t as new threading.thread(AddressOf Customer.DisplayCustomer) Customer.CustomerId=MyCustomerId t.start Which would create a new thread to display a customer on the screen for example. However, I have a problem with circular references in my objects which means that I have to load the customer object using reflection ie :
4
2000
by: Lucas Tam | last post by:
Hi all, I need to set a property on a subclass such as: Report.ExportOptions.ExportFormatType = ExportFormatType.Excel AND Report.ExportOptions.FormatOptions = excelFormatOpts
2
2554
by: Mark | last post by:
Hi there, I'm trying to create a function to dynamically set a property from a class. The idea is to get a general function that works for every class. Although this function works for classes i created myself, and for standard classes, this function does not seem to work for classes from webreferences (wsdl). I wonder why... This is my code:
4
4042
by: Pritcham | last post by:
Hi all I've got a number of classes already developed (basic entity classes) like the following: Public Class Contact Private _firstname as String Private _age as Integer Public Property FirstName As String
3
1907
by: MarkusJNZ | last post by:
Hi, given a name of an class e.g. "MyClass" which is stored as a string is it possible to create a new instance of this type dynamically and then reference the attributes by name in code?? e.g. If my class is called Person and it has attributes FirstName and LastName is it possible to do something like this; public void GeneratePerson()
6
11092
by: | last post by:
I have made some user controls with custom properties. I can set those properties on instances of my user controls, and I have programmed my user control to do useful visual things in response to how those properties are set. I want to be able to do two other things: a) add User control instances to my page, filling in the place of placeholder controls, and b) programmatically setting custom properties on those dynamically spawned...
3
4124
by: MarkusJ_NZ | last post by:
Hi, I am trying to dynamically populate an objects properties using reflection. Specifically, I have an object called the theObj and it has a number of properties. property is a PropertyInfo object What I want to do is to be able to set the property value dynamically which I am doing so using this line of code (Simplified version below)
0
772
by: rushi | last post by:
problem using .net reflection while setting neevia docconverter object properties. i am able to set the value of properties but i am getting some weird output. the file is not getting rendered and the original file is getting copied at the output location with another file with same name but no extension which contains the object details in it. can any body gimme the solution
4
6815
by: =?Utf-8?B?QWJoaQ==?= | last post by:
I am using Reflection to invoke methods dynamically. I have got a special requirement where I need to pass a value to method by setting the custom method attribute. As I cannot change the signature of method to pass a new parameter, I am setting the custom attribute of a given method and then accessing the attribute from method. Since attribute value is decided at runtime I want to change the attribute of particular method at runtime....
0
9602
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10639
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10376
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10120
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9200
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5550
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5688
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4332
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3861
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.