 | ReflectionUtilsSetPropertyEx Method |
Sets a value on an object. Supports . syntax for named properties
(ie. Customer.Entity.Company) as well as indexers.
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static Object SetPropertyEx(
Object parent,
string property,
Object value
)
Public Shared Function SetPropertyEx (
parent As Object,
property As String,
value As Object
) As Object
public:
static Object^ SetPropertyEx(
Object^ parent,
String^ property,
Object^ value
)
static member SetPropertyEx :
parent : Object *
property : string *
value : Object -> Object
Parameters
- parent
- Type: SystemObject
The parent. - property
- Type: SystemString
The property. - value
- Type: SystemObject
The value.
Return Value
Type:
Object[Missing <returns> documentation for "M:Koden.Utils.ReflectionUtils.SetPropertyEx(System.Object,System.String,System.Object)"]
See Also