SettingsSetterProcess Method
|
Sends the settingsToSet to the destinationDevice and then returns the updated setting values.
Namespace: Zebra.Sdk.PrinterAssembly: SdkApi.Core (in SdkApi.Core.dll) Version: 3.0.3271
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 String
- The connection string.
- settingsToSet DictionaryString, String
- The settings map to send to the printer.
Return Value
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