ACAT.Extensions.Default.FunctionalAgents.VolumeSettings.VolumeSettingsScanner.CommandHandler.Execute C# (CSharp) Method

Execute() public method

Executes the command
public Execute ( bool &handled ) : bool
handled bool true if it was handled
return bool
            public override bool Execute(ref bool handled)
            {
                switch (Command)
                {
                    case "VolumeTest":
                        (Dispatcher.Scanner.Form as VolumeSettingsScanner).doVolumeTest();
                        break;

                    default:
                        handled = false;
                        break;
                }

                return true;
            }
        }
VolumeSettingsScanner.CommandHandler