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