public override void Execute(/*CoroutineExecutionContext*/ Object context) { throw new NotImplementedException(); #if false var tool = _toolLocator(); if (_setData != null) { _setData(tool); } if (_onConfigure != null) { _onConfigure(tool); } tool.Deactivated += (s, e) => { if (!e.WasClosed) { return; } if (_onShutDown != null) { _onShutDown(tool); } OnCompleted(null, false); }; _shell.ShowTool(tool); #endif }
public override Task Run(MesCommand command) { _shell.ShowTool <IMesHistoryTool>(); return(MesTaskUtility.Completed); }