예제 #1
0
 /// <summary>
 /// Set an interceptor to get info on the current sync process
 /// </summary>
 public void On <T>(Action <T> interceptorAction) where T : ProgressArgs
 => this.interceptorBase = new Interceptor <T>(interceptorAction);
예제 #2
0
 /// <summary>
 /// Set an interceptor to get info on the current sync process
 /// </summary>
 public void SetInterceptor(InterceptorBase interceptor)
 => this.LocalProvider.On(interceptor);
예제 #3
0
 /// <summary>
 /// Set an interceptor to get info on the current sync process
 /// </summary>
 public void On(InterceptorBase interceptor)
 => this.interceptorBase = interceptor;
예제 #4
0
 /// <summary>
 /// Set an interceptor to get info on the current sync process
 /// </summary>
 public void SetInterceptor(InterceptorBase interceptor)
 => this.interceptorBase = interceptor;