| Member | Description |
|---|---|
GetPropertyInfo |
Helper method that gets a PropertyInfo object for a given object/property. public static PropertyInfo GetPropertyInfo( Type userType, string propertyName ); |
GetPropertyValue |
Helper method to get the value of a property. public static object GetPropertyValue( object source, string property ); |
SetPropertyValue |
Helper method to set the value of a property on a given object. public static void SetPropertyValue( object source, string property, object value ); |