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