Class ClientMetadata
Data class to hold client metadata including device ID and whether this device can receive commands
Constructors
Declaration
public ClientMetadata(string clientId, int deviceNr, bool receivesCommands)
Parameters
| Type |
Name |
Description |
| System.String |
clientId |
|
| System.Int32 |
deviceNr |
|
| System.Boolean |
receivesCommands |
|
Properties
Declaration
public bool CanReceiveCommands { get; }
Property Value
| Type |
Description |
| System.Boolean |
|
Declaration
public string DeviceId { get; }
Property Value
| Type |
Description |
| System.String |
|
Declaration
public int DeviceNumber { get; }
Property Value
| Type |
Description |
| System.Int32 |
|