Click or drag to resize

ReflectionUtilsGetPropertyEx Method

Returns a property or field value using a base object and sub members including . syntax. For example, you can access: oCustomer.oData.Company with (this,"oCustomer.oData.Company") This method also supports indexers in the Property value such as: Customer.DataSet.Tables["Customers"].Rows[0]

Namespace:  Koden.Utils
Assembly:  Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntax
public static Object GetPropertyEx(
	Object Parent,
	string Property
)

Parameters

Parent
Type: SystemObject
Parent object to 'start' parsing from. Typically this will be the Page.
Property
Type: SystemString
The property to retrieve. Example: 'Customer.Entity.Company'

Return Value

Type: Object

[Missing <returns> documentation for "M:Koden.Utils.ReflectionUtils.GetPropertyEx(System.Object,System.String)"]

See Also