PLCnext API Documentation 23.6.0.37
|
Container for a combination of an error code and a value which is a result for a read operation to a single setting. More...
#include <DeviceSettingResult.hpp>
Public Member Functions | |
void | Serialize (RscWriter &writer) const override |
Serializes the datatype. All fields of the datatype have to be serialized in use of RscWriter. More... | |
void | Deserialize (RscReader &reader) override |
Deserializes the datatype. All fields of the datatype have to be deserialized in use of RscReader. More... | |
![]() | |
virtual | ~IRscSerializable ()=default |
default destructor | |
virtual void | Serialize (RscWriter &writer) const =0 |
Serializes the datatype. All fields of the datatype have to be serialized in use of RscWriter. More... | |
virtual void | Deserialize (RscReader &reader)=0 |
Deserializes the datatype. All fields of the datatype have to be deserialized in use of RscReader. More... | |
Static Public Member Functions | |
static constexpr size_t | GetFieldCount (void) |
![]() | |
static size_t | GetFieldCount (void) |
Returns the count of fields of the struct type More... | |
Public Attributes | |
AccessErrorCode | ErrorCode = static_cast<AccessErrorCode>(0) |
An error code which describes the reason why a setting could not be read with The error codes can be interpreted with the help of the enumeration Arp.Device.Interface.Services.AccessErrorCode. | |
RscVariant< 512 > | Value |
The value for the requested setting which can be RscType::Void
and otherwise is of the simple type the setting has. More... | |
Container for a combination of an error code and a value which is a result for a read operation to a single setting.
The structure is used as result by Arp.Device.Interface.Services.IDeviceSettingsService.ReadValue A sequence of instances of this structure is used as result by Arp.Device.Interface.Services.IDeviceSettingsService.ReadValues.
|
inlineoverridevirtual |
Deserializes the datatype. All fields of the datatype have to be deserialized in use of RscReader.
reader | Reference to RscReader. |
Implements Arp::System::Rsc::Services::IRscSerializable.
|
inlineoverridevirtual |
Serializes the datatype. All fields of the datatype have to be serialized in use of RscWriter.
writer | Reference to RscWriter |
Implements Arp::System::Rsc::Services::IRscSerializable.
RscVariant<512> Arp::Device::Interface::Services::DeviceSettingResult::Value |
The value for the requested setting which can be
and otherwise is of the simple type the setting has.
Please note that this property is
whenever the member Arp.Device.Interface.Services.DeviceSettingResult.ErrorCode indicates an error which means it is not Arp.Device.Interface.Services.AccessErrorCode.None.