/// <summary> /// Intercept the provider action when a scope is loaded from client database /// </summary> public static void OnScopeLoaded(this LocalOrchestrator orchestrator, Func <ScopeLoadedArgs <ScopeInfo>, Task> action) => orchestrator.SetInterceptor(action);
/// <summary> /// Intercept the provider action when a scope is about to be loaded from client database /// </summary> public static void OnScopeLoading(this LocalOrchestrator orchestrator, Func <ScopeLoadingArgs, Task> action) => orchestrator.SetInterceptor(action);