 | ReflectionUtilsGetPropertyExCom 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")
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static Object GetPropertyExCom(
Object parent,
string property
)
Public Shared Function GetPropertyExCom (
parent As Object,
property As String
) As Object
public:
static Object^ GetPropertyExCom(
Object^ parent,
String^ property
)
static member GetPropertyExCom :
parent : Object *
property : string -> Object
Parameters
- parent
- Type: SystemObject
Parent object to 'start' parsing from. - property
- Type: SystemString
The property to retrieve. Example: 'oBus.oData.Company'
Return Value
Type:
Object[Missing <returns> documentation for "M:Koden.Utils.ReflectionUtils.GetPropertyExCom(System.Object,System.String)"]
See Also