예제 #1
0
파일: Validation.cs 프로젝트: wpq0/FormNG
 private static bool ValidateExpression(string expression, Node node)
 {
     return String.IsNullOrWhiteSpace(expression)
             || node.Evaluate<bool>(expression);
 }
예제 #2
0
파일: Validation.cs 프로젝트: wpq0/FormNG
 private static bool ValidateCompare(Node node, string compareType, string against)
 {
     var @operator = GetCompareOperator(compareType);
     return @operator == null
             || String.IsNullOrWhiteSpace(against)
             || node.Evaluate<bool>("value " + @operator + "(" + against + ")");
 }