Overload List

  NameDescription
UsbPrinterConnection(String)
Initializes a new instance of the UsbPrinterConnection class. This constructor will use the default timeouts for Read(). The default timeout is a maximum of 5 seconds for any data to be received.

If no more data is available after 500 milliseconds the read operation is assumed to be complete.

To specify timeouts other than the defaults, use:

UsbPrinterConnection(String, Int32, Int32)
UsbPrinterConnection(String, Int32, Int32)
Initializes a new instance of the UsbPrinterConnection class. This constructor will use the specified timeouts for Read().

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.

See Also