Is it possible to open an existing toolbox (*.tbx) and read the tools into a collection?
Something along the lines of:
var toolboxPath = "C:\Data\ToolboxExample.tbx";
var toolbox = Toolbox.Open(toolboxPath);
ToolboxItemsCollection toolboxItems = toolBox.GetToolsList();
I'm wanting to write a WPF usercontrol that displays a list of all the geoprocessing tools in the toolbox, rather than needing to access them through the Catalog. I won't know at compile time which tools are in the toolbox so adding them as buttons in the DAML is not an option.