![Pepperl+Fuchs SmartRunner Explorer Скачать руководство пользователя страница 32](http://html1.mh-extra.com/html/pepperl-fuchs/smartrunner-explorer/smartrunner-explorer_manual_1527552032.webp)
2
0
2
2
-0
2
30
Configuration
Reading the Parameter Set
Reads the current parameter set from the device and saves it under the specified path and file
name.
Asynchronous Function
public async Task<(bool Succ, Error ErrorDesc)> DownloadParameter-
Set(string destinationFileName)
Synchronous Function
public (bool Succ, Error ErrorDesc) DownloadParameterSet(string des-
tinationFileName)
Possible error IDs: VSX_DRIVER_SAVE_FILE_ERROR
Save the Parameter Set
Saves the current parameter settings on the device. The set values are then set each time the
device is started.
All parameter data is initially stored on the device in a volatile state and can be reset by a restart
or by LoadParameterSetOnDevice. Only SaveParameterSetOnDevice permanently saves the
parameters.
Asynchronous Function
public async Task<(bool Succ, Error ErrorDesc)> SaveParameterSetOnDe-
vice()
Synchronous Function
public (bool Succ, Error ErrorDesc) SaveParameterSetOnDevice()
Possible error IDs: VSX_DRIVER_CONNECTION_ERROR
Load Parameter Settings
Loads the parameter settings saved via SaveParametersetOnDevice() on the device. The
parameters then have the previously saved values. A current parameter list is returned.
Asynchronous Function
public async Task<(bool Succ, List<Parameter> ParameterList, Error
ErrorDesc)> LoadParameterSetOnDevice()
Synchronous Function
public (bool Succ, List<Parameter> ParameterList, Error ErrorDesc)
LoadParameterSetOnDevice()
Possible error IDs: VSX_DRIVER_GENERAL_ERROR, VSX_DRIVER_DATA_ERROR, VSX-
_DRIVER_CONNECTION_ERROR