Exemplo n.º 1
0
 public bool Evaluate(Func <string, bool> matcher)
 {
     return(LValue.Evaluate(matcher) && RValue.Evaluate(matcher));
 }
Exemplo n.º 2
0
 public bool Evaluate(Func <string, bool> roleMatcher, Func <string, bool> userMatcher)
 {
     return(LValue.Evaluate(roleMatcher, userMatcher) && RValue.Evaluate(roleMatcher, userMatcher));
 }