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: 2.14.1869
Syntax
public static Dictionary<string, string> Process(
	string destinationDevice,
	Dictionary<string, string> settingsToSet
)

Parameters

destinationDevice
Type: SystemString
The connection string.
settingsToSet
Type: System.Collections.GenericDictionaryString, String
The settings map to send to the printer.

Return Value

Type: 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