diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs index 4f7ebbbdd..e65b67e26 100644 --- a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs +++ b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs @@ -473,6 +473,16 @@ namespace Tango.Integration.Operation return await SendRequest<ThreadAbortJoggingRequest, ThreadAbortJoggingResponse>(request); } + /// <summary> + /// Sets the specified component value. + /// </summary> + /// <param name="request">The request.</param> + /// <returns></returns> + public async Task<SetComponentValueResponse> SetComponentValue(SetComponentValueRequest request) + { + return await SendRequest<SetComponentValueRequest, SetComponentValueResponse>(request); + } + #endregion } } |
