ClrPropertyInfo Class
Definition
public class ClrPropertyInfo
Constructors
| Name | Description |
|---|---|
| ClrPropertyInfo | No summary available. |
ClrPropertyInfo Constructor
public ClrPropertyInfo(string name, Func<object, object> getter, Action<object, object> setter, Type propertyType)
Parameters
name string
getter Func<object, object>
setter Action<object, object>
propertyType Type
Methods
Get Method
public object Get(object target)
Parameters
target object
Returns
object
Set Method
public void Set(object target, object value)
Parameters
target object
value object
Properties
| Name | Description |
|---|---|
| CanGet | No summary available. |
| CanSet | No summary available. |
| Name | No summary available. |
| PropertyType | No summary available. |
CanGet Property
public bool CanGet { get; set; }
CanSet Property
public bool CanSet { get; set; }
Name Property
public string Name { get; set; }
PropertyType Property
public Type PropertyType { get; set; }