Click or drag to resize

SGDDO(Stream, String, String, Connection, Int32, Int32) Method

Constructs an SGD DO command and sends it to the printer.

Namespace: Zebra.Sdk.Printer
Assembly: SdkApi.Core (in SdkApi.Core.dll) Version: 3.0.3271
Syntax
public static void DO(
	Stream responseData,
	string setting,
	string value,
	Connection printerConnection,
	int maxTimeoutForRead,
	int timeToWaitForMoreData
)

Parameters

responseData  Stream
output stream to receive the response.
setting  String
the SGD setting
value  String
the setting's value
printerConnection  Connection
the connection to send the command to
maxTimeoutForRead  Int32
the maximum time, in milliseconds, to wait for a response from the printer
timeToWaitForMoreData  Int32
the maximum time, in milliseconds, to wait in-between reads after the initial data is received
Exceptions
ExceptionCondition
ConnectionExceptionif an I/O error occurs
Remarks
This method waits for a maximum of maxTimeoutForRead milliseconds for any data to be received. Once some data has been received it waits until no more data is available within timeToWaitForMoreData milliseconds. This method write the SGD value associated with setting without the surrounding quotes.
See Also