Bennedik.Validation.Integration.WPF.EnterpriseValidationRule.GetValue C# (CSharp) Method

GetValue() private method

private GetValue ( object &value, string &valueAccessFailureMessage ) : bool
value object
valueAccessFailureMessage string
return bool
        internal bool GetValue(out object value, out string valueAccessFailureMessage)
        {
            var helper = new ValidationIntegrationHelper(this);

            bool result;
            try
            {
                result = helper.GetValue(out value, out valueAccessFailureMessage);
            }
            catch
            {
                result = false;
                value = null;
                valueAccessFailureMessage = String.Empty;
            }

            return result;
        }