MultichannelTcpConnection Constructor (DiscoveredPrinter, Int32, Int32)
|
Initializes a new instance of the MultichannelTcpConnection class.
Namespace:
Zebra.Sdk.Comm
Assembly:
SdkApi.Core (in SdkApi.Core.dll) Version: 2.15.2634
Syntax public MultichannelTcpConnection(
DiscoveredPrinter discoveredPrinter,
int maxTimeoutForRead,
int timeToWaitForMoreData
)
Public Sub New (
discoveredPrinter As DiscoveredPrinter,
maxTimeoutForRead As Integer,
timeToWaitForMoreData As Integer
)
public:
MultichannelTcpConnection(
DiscoveredPrinter^ discoveredPrinter,
int maxTimeoutForRead,
int timeToWaitForMoreData
)
Parameters
- discoveredPrinter
- Type: Zebra.Sdk.Printer.DiscoveryDiscoveredPrinter
The discovered printer. - maxTimeoutForRead
- Type: SystemInt32
The maximum time, in milliseconds, to wait for any data to be received. - timeToWaitForMoreData
- Type: SystemInt32
The maximum time, in milliseconds, to wait in-between reads after the initial read.
Remarks
This constructor will use the specified timeouts for
Read for both channels. The timeout is a maximum of
maxTimeoutForRead milliseconds for any data to be received. If no more data is available after
timeToWaitForMoreData
milliseconds the read operation is assumed to be complete. If you wish to specify different timeouts for each channel, use
MultichannelTcpConnection(DiscoveredPrinter, Int32, Int32, Int32, Int32)See Also