コード例 #1
0
ファイル: ActionSource.cs プロジェクト: randommuses/jasper
 /// <summary>
 ///     Ignore any methods that are declared by a super type or interface T
 /// </summary>
 /// <typeparam name="T"></typeparam>
 public void IgnoreMethodsDeclaredBy <T>()
 {
     _methodFilters.IgnoreMethodsDeclaredBy <T>();
 }
コード例 #2
0
 /// <summary>
 ///     Ignore any methods that are declared by a super type or interface T
 /// </summary>
 /// <typeparam name="T"></typeparam>
 public JasperHttpOptions IgnoreMethodsDeclaredBy <T>()
 {
     _methodFilters.IgnoreMethodsDeclaredBy <T>();
     return(this);
 }