 | 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
Syntaxpublic static Object GetPropertyEx(
Object Parent,
string Property
)
Public Shared Function GetPropertyEx (
Parent As Object,
Property As String
) As Object
public:
static Object^ GetPropertyEx(
Object^ Parent,
String^ Property
)
static member GetPropertyEx :
Parent : Object *
Property : string -> Object
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