Params client
To work with parameters from a client, request the IParamsClient from the device instance.
After that, you can read parameters from the remote device:
You can also write parameters:
To read all parameters from a device:
IParamsClient (source)
Represents a client for handling parameters.
Property | Type | Description |
|---|---|---|
|
| Property that represents an observable sequence of |
Method | Return Type | Description |
|---|---|---|
|
| Sends a request list asynchronously. |
|
| Reads the value of a specified name. |
|
| Reads the value of a parameter at the specified index. |
|
| Writes a value to a parameter. |
IParamsClient.SendRequestList
Parameter | Type | Description |
|---|---|---|
|
| (Optional) The cancellation token. |
IParamsClient.Read(string name)
Parameter | Type | Description |
|---|---|---|
|
| The name of the value to read. |
|
| (Optional) The cancellation token. |
IParamsClient.Read(ushort index)
Parameter | Type | Description |
|---|---|---|
|
| The index of the parameter to read. |
|
| (Optional) The cancellation token. |
IParamsClient.Write
Parameter | Type | Description |
|---|---|---|
|
| The name of the parameter. |
|
| The type of the parameter. |
|
| The value to write. |
|
| (Optional) The cancellation token. |