コード例 #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
ファイル: SyncAgent.cs プロジェクト: pedoc/Dotmim.Sync
 /// <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
ファイル: CoreProvider.cs プロジェクト: yanziyang/Dotmim.Sync
 /// <summary>
 /// Set an interceptor to get info on the current sync process
 /// </summary>
 public void SetInterceptor(InterceptorBase interceptor)
 => this.interceptorBase = interceptor;