diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-21 15:56:57 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-21 15:56:57 +0200 |
| commit | 3234e33cc4ba354f0395bb514b8b2fa102cf38ec (patch) | |
| tree | 064121c6d1b2d7ea428e705d8457f86ca95e4a4b /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioApplication/IStudioApplicationManager.cs | |
| parent | 68dca419117f9336d0fe21f9f04903906eeeef02 (diff) | |
| download | Tango-3234e33cc4ba354f0395bb514b8b2fa102cf38ec.tar.gz Tango-3234e33cc4ba354f0395bb514b8b2fa102cf38ec.zip | |
Started working on Developer module.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioApplication/IStudioApplicationManager.cs')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioApplication/IStudioApplicationManager.cs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioApplication/IStudioApplicationManager.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioApplication/IStudioApplicationManager.cs index a88a045a6..c67c34044 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioApplication/IStudioApplicationManager.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioApplication/IStudioApplicationManager.cs @@ -20,7 +20,7 @@ namespace Tango.MachineStudio.Common.StudioApplication /// <summary> /// Gets a value indicating whether Machine Studio is shutting down. /// </summary> - bool IsShuttingDown { get;} + bool IsShuttingDown { get; } /// <summary> /// Shutdown the application. @@ -40,6 +40,13 @@ namespace Tango.MachineStudio.Common.StudioApplication /// <summary> /// Gets a value indicating whether the <see cref="ConnectedMachine"/> is valid and connected through TCP/IP. /// </summary> - bool IsMachineConnectedViaTCP { get; } + bool IsMachineConnectedViaTCP { get; } + + /// <summary> + /// Loads the specified module if permitted. + /// </summary> + /// <param name="moduleName">Name of the module.</param> + /// <param name="args">The arguments.</param> + void RequestModule(String moduleName, Object args); } } |
