DriverPrinterConnectionWrite Method (Byte, Int32, Int32)
|
Writes length bytes from data starting at offset.
Namespace:
Zebra.Sdk.Comm
Assembly:
SdkApi.Desktop (in SdkApi.Desktop.dll) Version: 2.15.2634
Syntax public override void Write(
byte[] data,
int offset,
int length
)
Public Overrides Sub Write (
data As Byte(),
offset As Integer,
length As Integer
)
public:
virtual void Write(
array<unsigned char>^ data,
int offset,
int length
) override
Parameters
- data
- Type: SystemByte
The data. - offset
- Type: SystemInt32
The start offset in the data. - length
- Type: SystemInt32
The number of bytes to write.
Implements
ConnectionWrite(Byte, Int32, Int32)Exceptions Remarks
The connection must be open before this method is called. If Write is called when a
connection is closed, a ConnectionException is thrown.
See Also