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
)
Public Shared Function Process (
destinationDevice As String,
settingsToSet As Dictionary(Of String, String)
) As Dictionary(Of String, String)
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,
StringThe settings' values after the map has been sent to the printer.
Exceptions 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