Example #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);
Example #2
0
 /// <summary>
 /// Set an interceptor to get info on the current sync process
 /// </summary>
 public void SetInterceptor(InterceptorBase interceptor)
 => this.LocalProvider.On(interceptor);
Example #3
0
 /// <summary>
 /// Set an interceptor to get info on the current sync process
 /// </summary>
 public void On(InterceptorBase interceptor)
 => this.interceptorBase = interceptor;
Example #4
0
 /// <summary>
 /// Set an interceptor to get info on the current sync process
 /// </summary>
 public void SetInterceptor(InterceptorBase interceptor)
 => this.interceptorBase = interceptor;