FluentLinqToSql.ActiveRecord.DataAnnotationsValidator.GetPropertyValue C# (CSharp) Method

GetPropertyValue() private method

private GetPropertyValue ( PropertyInfo property, object toValidate ) : object
property System.Reflection.PropertyInfo
toValidate object
return object
        private object GetPropertyValue(PropertyInfo property, object toValidate)
        {
            return property.GetValue(toValidate, null);
        }