 | ReflectionUtilsGetPropertyInfoEx Method |
Returns a PropertyInfo object for a given dynamically accessed property
Property selection can be specified using . syntax ("Address.Street" or "DataTable[0].Rows[1]") hence the Ex name for this function.
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static PropertyInfo GetPropertyInfoEx(
Object Parent,
string Property
)
Public Shared Function GetPropertyInfoEx (
Parent As Object,
Property As String
) As PropertyInfo
public:
static PropertyInfo^ GetPropertyInfoEx(
Object^ Parent,
String^ Property
)
static member GetPropertyInfoEx :
Parent : Object *
Property : string -> PropertyInfo
Parameters
- Parent
- Type: SystemObject
[Missing <param name="Parent"/> documentation for "M:Koden.Utils.ReflectionUtils.GetPropertyInfoEx(System.Object,System.String)"]
- Property
- Type: SystemString
[Missing <param name="Property"/> documentation for "M:Koden.Utils.ReflectionUtils.GetPropertyInfoEx(System.Object,System.String)"]
Return Value
Type:
PropertyInfo[Missing <returns> documentation for "M:Koden.Utils.ReflectionUtils.GetPropertyInfoEx(System.Object,System.String)"]
See Also