Overload List

  NameDescription
BluetoothPrinterConnection(String)
Initializes a new instance of the BluetoothPrinterConnection class with the given macAddress. The MAC address is a hexadecimal string with no separators between the octets. (e.g. 0011BBDD55FF). 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:

BluetoothPrinterConnection(String, Int32, Int32)

An attempt is made to determine the proper Bluetooth(R) stack for the platform. To explicitly specify a Bluetooth(R) stack use:
BluetoothPrinterConnection(String, Int32, Int32, BluetoothStackDescriptor)
BluetoothPrinterConnection(String, Int32, Int32)
Initializes a new instance of the BluetoothPrinterConnection class with the given macAddress and timeout values. The MAC address is a hexadecimal string with no separators between the octets. (e.g. 0011BBDD55FF). 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.

An attempt is made to determine the proper Bluetooth(R) stack for the platform. To explicitly specify a Bluetooth(R) stack use:
BluetoothPrinterConnection(String, Int32, Int32, BluetoothStackDescriptor)
BluetoothPrinterConnection(String, Int32, Int32, BluetoothStackDescriptor)
Initializes a new instance of the BluetoothPrinterConnection class with the given macAddress, timeout values, and bluetoothStackDescriptor. The MAC address is a hexadecimal string with no separators between the octets. (e.g. 0011BBDD55FF). 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.
The bluetoothStackDescriptor specifies which Bluetooth(R) stack to use.

See Also