コード例 #1
0
 public void AddInterceptor(IInterceptEvents interceptor)
 {
 }
コード例 #2
0
 void IConfigureBullOak.AddInterceptor(IInterceptEvents interceptor)
 {
     this.InterceptorList.Add(interceptor);
 }
コード例 #3
0
 public static TConfig WithInterceptor <TConfig>(this TConfig config, IInterceptEvents interceptor)
     where TConfig : IConfigureBullOak
 {
     config.AddInterceptor(interceptor);
     return(config);
 }