Click or drag to resize

SettingsSetterProcess Method

Sends the settingsToSet to the destinationDevice and then returns the updated setting values.

Namespace: Zebra.Sdk.Printer
Assembly: SdkApi.Core (in SdkApi.Core.dll) Version: 3.0.3271
Syntax
public static Dictionary<string, string> Process(
	string destinationDevice,
	Dictionary<string, string> settingsToSet
)

Parameters

destinationDevice  String
The connection string.
settingsToSet  DictionaryString, String
The settings map to send to the printer.

Return Value

DictionaryString, String
The settings' values after the map has been sent to the printer.
Exceptions
ExceptionCondition
ConnectionExceptionIf there is an error communicating with the printer.
SettingsExceptionIf the setting could not be set or retrieved.
Remarks
Due to the setting verification and validation, additional time and data traffic will be needed for each SettingsSetter Process call. It is recommended to bundle all changing settings into one map and one method call to reduce this overhead.
See Also