ConnectionWrite Method (Byte, Int32, Int32)
|
Writes length bytes from data starting at offset.
Namespace:
Zebra.Sdk.Comm
Assembly:
SdkApi_Core (in SdkApi_Core.dll) Version: 2.14.1869
Syntax void Write(
byte[] data,
int offset,
int length
)
Sub Write (
data As Byte(),
offset As Integer,
length As Integer
)
void Write(
array<unsigned char>^ data,
int offset,
int length
)
Parameters
- data
- Type: SystemByte
The data. - offset
- Type: SystemInt32
The start offset in the data. - length
- Type: SystemInt32
The number of bytes to write.
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