Exemplo n.º 1
0
 public ActionCallCandidateExpression IgnoreMethodsDeclaredBy <T>()
 {
     _methodFilter.IgnoreMethodsDeclaredBy <T>();
     return(this);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Ignore any methods that are declared by a super type or interface T
 /// </summary>
 /// <typeparam name="T"></typeparam>
 public void IgnoreMethodsDeclaredBy <T>()
 {
     _description.WriteLine("Exclude methods declared by type " + typeof(T).FullName);
     _methodFilters.IgnoreMethodsDeclaredBy <T>();
 }