public bool ExecuteCommand(
     ExtractInterfaceCommandArgs args,
     CommandExecutionContext context
     )
 {
     CommitIfActive(args);
     return(false);
 }
Exemplo n.º 2
0
 public CommandState GetCommandState(ExtractInterfaceCommandArgs args)
 => CommandState.Unspecified;
 public CommandState GetCommandState(ExtractInterfaceCommandArgs args)
 {
     return(CommandState.Unspecified);
 }
Exemplo n.º 4
0
 public void ExecuteCommand(ExtractInterfaceCommandArgs args, Action nextHandler)
 {
     CommitIfActiveAndCallNextHandler(args, nextHandler);
 }
Exemplo n.º 5
0
 public CommandState GetCommandState(ExtractInterfaceCommandArgs args, Func <CommandState> nextHandler)
 {
     return(nextHandler());
 }