ConnectionAWrite(Byte, Int32, Int32) Method
|
Writes length bytes from data starting at offset.
Namespace: Zebra.Sdk.CommAssembly: SdkApi.Core (in SdkApi.Core.dll) Version: 3.0.3271
Syntax public virtual void Write(
byte[] data,
int offset,
int length
)
Public Overridable Sub Write (
data As Byte(),
offset As Integer,
length As Integer
)
public:
virtual void Write(
array<unsigned char>^ data,
int offset,
int length
)
Parameters
- data Byte
- The data.
- offset Int32
- The start offset in the data.
- length Int32
- 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