Property ComparerTGet Property Value Method
This is used to get the property value from the object
Definition
Namespace: EWSoftware.PDI.Binding
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
The value of the property
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public static Object? GetPropertyValue(
T x,
string propertyName
)VB
Public Shared Function GetPropertyValue (
x As T,
propertyName As String
) As ObjectC++
public:
static Object^ GetPropertyValue(
T x,
String^ propertyName
)F#
static member GetPropertyValue :
x : 'T *
propertyName : string -> Object Parameters
- x T
- The object from which to retrieve the property value
- propertyName String
- The name of the property from which to get the value
Return Value
ObjectThe value of the property
Remarks
This takes into account child property references as well (those where the name contains an
underscore).