diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-11-28 16:53:09 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-11-28 16:53:09 +0200 |
| commit | e6e91a5c5435e524876d44d91b92c90f990a60c7 (patch) | |
| tree | ec95738b8d9b349c94255ffdb1748e893b9a6cec /Software/Visual_Studio/PPC/Tango.PPC.Common/Web | |
| parent | 242cb9fd566647406792d63547b61ec1d6a5f3bc (diff) | |
| download | Tango-e6e91a5c5435e524876d44d91b92c90f990a60c7.tar.gz Tango-e6e91a5c5435e524876d44d91b92c90f990a60c7.zip | |
Implemented setup and update notifications from PPC to service.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Web')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Web/PPCWebClientBase.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/PPCWebClientBase.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/PPCWebClientBase.cs index 2df343241..5520f8b5a 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/PPCWebClientBase.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/PPCWebClientBase.cs @@ -59,6 +59,15 @@ namespace Tango.PPC.Common.Web } /// <summary> + /// Executes the NotifyUpdateCompleted action and returns Tango.PPC.Common.Web.MachineUpdateCompletedResponse. + /// </summary> + /// <returns></returns> + public Task<Tango.PPC.Common.Web.MachineUpdateCompletedResponse> NotifyUpdateCompleted(Tango.PPC.Common.Web.MachineUpdateCompletedRequest request) + { + return Post<Tango.PPC.Common.Web.MachineUpdateCompletedRequest, Tango.PPC.Common.Web.MachineUpdateCompletedResponse>("NotifyUpdateCompleted", request); + } + + /// <summary> /// Executes the CheckForUpdates action and returns Tango.PPC.Common.Web.CheckForUpdateResponse. /// </summary> /// <returns></returns> |
