Exemplo n.º 1
0
 public TConfig ReplaceWorkflowStepEditHandling(CollectionHandlerFactory <TDependencyResolver, IAsyncWorkflowStepEditHandler> handlerFactory) => Chain(() => ReplaceCollectionHandling(handlerFactory));
Exemplo n.º 2
0
 public TConfig ReplaceBlockActionHandling(CollectionHandlerFactory <TDependencyResolver, IAsyncBlockActionHandler> handlerFactory) => Chain(() => ReplaceCollectionHandling(handlerFactory));
Exemplo n.º 3
0
 public TConfig ReplaceGlobalShortcutHandling(CollectionHandlerFactory <TDependencyResolver, IAsyncGlobalShortcutHandler> handlerFactory) => Chain(() => ReplaceCollectionHandling(handlerFactory));
Exemplo n.º 4
0
 protected abstract void ReplaceCollectionHandling <THandler>(CollectionHandlerFactory <TDependencyResolver, THandler> handlerFactory) where THandler : class;
Exemplo n.º 5
0
 public TConfig ReplaceEventHandling(CollectionHandlerFactory <TDependencyResolver, IEventHandler> handlerFactory) => Chain(() => ReplaceCollectionHandling(handlerFactory));
 /// <summary>
 /// Take over all workflow Step Edit handling with your own handler.
 /// </summary>
 public abstract TConfig ReplaceWorkflowStepEditHandling(CollectionHandlerFactory <IAsyncWorkflowStepEditHandler> handlerFactory);
Exemplo n.º 7
0
 protected override void ReplaceCollectionHandling <THandler>(CollectionHandlerFactory <THandler> handlerFactory) => ReplaceCollectionHandling <THandler>((r, hs) => handlerFactory(hs));
 /// <summary>
 /// Take over all message shortcut handling with your own handler.
 /// </summary>
 public abstract TConfig ReplaceMessageShortcutHandling(CollectionHandlerFactory <IAsyncMessageShortcutHandler> handlerFactory);
 /// <summary>
 /// Take over all global shortcut handling with your own handler.
 /// </summary>
 public abstract TConfig ReplaceGlobalShortcutHandling(CollectionHandlerFactory <IAsyncGlobalShortcutHandler> handlerFactory);
 /// <summary>
 /// Take over all event handling with your own handler.
 /// </summary>
 public abstract TConfig ReplaceEventHandling(CollectionHandlerFactory <IEventHandler> handlerFactory);
 /// <summary>
 /// Take over all block action handling with your own handler.
 /// </summary>
 public abstract TConfig ReplaceBlockActionHandling(CollectionHandlerFactory <IAsyncBlockActionHandler> handlerFactory);
Exemplo n.º 12
0
 public override TConfig ReplaceWorkflowStepEditHandling(CollectionHandlerFactory <IAsyncWorkflowStepEditHandler> handlerFactory) => Chain(() => ReplaceCollectionHandling(handlerFactory));
Exemplo n.º 13
0
 public override TConfig ReplaceGlobalShortcutHandling(CollectionHandlerFactory <IAsyncGlobalShortcutHandler> handlerFactory) => Chain(() => ReplaceCollectionHandling(handlerFactory));
Exemplo n.º 14
0
 public override TConfig ReplaceBlockActionHandling(CollectionHandlerFactory <IAsyncBlockActionHandler> handlerFactory) => Chain(() => ReplaceCollectionHandling(handlerFactory));
Exemplo n.º 15
0
 public override TConfig ReplaceEventHandling(CollectionHandlerFactory <IEventHandler> handlerFactory) => Chain(() => ReplaceCollectionHandling(handlerFactory));
Exemplo n.º 16
0
 protected abstract void ReplaceCollectionHandling <THandler>(CollectionHandlerFactory <THandler> handlerFactory) where THandler : class;