/// <summary> /// Create a property reference from an object target and reflection PropertyInfo. /// This represents a property on an object. /// </summary> public PropertyReference(object target, PropertyInfo property) { SRDebugUtil.AssertNotNull(target); SRDebugUtil.AssertNotNull(property); PropertyType = property.PropertyType; _property = property; _target = target; #if NETFX_CORE if (_property.GetMethod != null && _property.GetMethod.IsPublic) #else if (property.GetGetMethod() != null) #endif { _getter = () => SRReflection.GetPropertyValue(target, property); } #if NETFX_CORE if (_property.SetMethod != null && _property.SetMethod.IsPublic) #else if (property.GetSetMethod() != null) #endif { _setter = (v) => SRReflection.SetPropertyValue(target, property, v); } }
public object GetValue() { if (_property.CanRead) { return(SRReflection.GetPropertyValue(_target, _property)); } return(null); }