FluentLinqToSql.ActiveRecord.DataAnnotationsValidator.GetPropertyValue C# (CSharp) Méthode

GetPropertyValue() private méthode

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