Dev2.CaseConvertTO.Validate C# (CSharp) Method

Validate() public method

public Validate ( string propertyName, string datalist ) : bool
propertyName string
datalist string
return bool
        public bool Validate(string propertyName, string datalist)
        {
            RuleSet ruleSet = null;
            switch (propertyName)
            {
                case "FieldName":
                    ruleSet = GetFieldNameRuleSet();
                    break;
                case "FieldValue":
                    break;
            }
            return Validate(propertyName, ruleSet);
        }

Same methods

CaseConvertTO::Validate ( string propertyName, IRuleSet ruleSet ) : bool