diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2017-12-24 14:26:36 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2017-12-24 14:26:36 +0200 |
| commit | 8ef54228747d6d7e534953c265cfa95a5489ac0f (patch) | |
| tree | 1b1fe9b420a7ddfad8e7e44d7ad4949263d1395d /Software/Visual_Studio/Tango.Stubs | |
| parent | 902f5d6d68ed52d92c089a65823ff49599cd3014 (diff) | |
| download | Tango-8ef54228747d6d7e534953c265cfa95a5489ac0f.tar.gz Tango-8ef54228747d6d7e534953c265cfa95a5489ac0f.zip | |
Modified .NET Transport layer to return TangoMessage<Response> for a request !!!
Diffstat (limited to 'Software/Visual_Studio/Tango.Stubs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Stubs/Stubs/Calculate.cs | 2 | ||||
| -rw-r--r-- | Software/Visual_Studio/Tango.Stubs/Stubs/Progress.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.Stubs/Stubs/Calculate.cs b/Software/Visual_Studio/Tango.Stubs/Stubs/Calculate.cs index e1bea5454..6afedde96 100644 --- a/Software/Visual_Studio/Tango.Stubs/Stubs/Calculate.cs +++ b/Software/Visual_Studio/Tango.Stubs/Stubs/Calculate.cs @@ -34,7 +34,7 @@ namespace Tango.Stubs.Stubs } ); - return response.Sum.ToString(); + return response.Message.Sum.ToString(); } } } diff --git a/Software/Visual_Studio/Tango.Stubs/Stubs/Progress.cs b/Software/Visual_Studio/Tango.Stubs/Stubs/Progress.cs index dc03f538e..cd13a84ff 100644 --- a/Software/Visual_Studio/Tango.Stubs/Stubs/Progress.cs +++ b/Software/Visual_Studio/Tango.Stubs/Stubs/Progress.cs @@ -34,7 +34,7 @@ namespace Tango.Stubs.Stubs Delay = (int)Delay, }), (response) => { - multiResponseCallback(response.Progress.ToString()); + multiResponseCallback(response.Message.Progress.ToString()); }); return Task.FromResult<String>(""); |
