Exemple #1
0
 private static void SetInterceptor <T>(this BaseOrchestrator orchestrator, Func <T, Task> func) where T : ProgressArgs
 => orchestrator.On(func);
Exemple #2
0
 private static void SetInterceptor <T>(this BaseOrchestrator orchestrator, Action <T> action) where T : ProgressArgs
 => orchestrator.On(action);