Exemplo n.º 1
0
 public void WhereNot(MethodPointcut pointcut)
 {
     FilterNot(pointcut);
 }
Exemplo n.º 2
0
 public void WhereHasMethod(MethodPointcut method)
 {
     Where(t => method.Match(t) && t.Methods.Any(method.Match));
 }
Exemplo n.º 3
0
 public void WhereFromMethod(MethodPointcut methodPointcut)
 {
     _memberFilter.WhereAny(methodPointcut);
 }
Exemplo n.º 4
0
 public void WhereMethod(MethodPointcut methodPointcut)
 {
     this.methodPointcut.WhereAny(methodPointcut);
 }