ConnectionWrite(Byte) Method
|
Writes data.Length bytes from the specified byte array to this output stream.
Namespace: Zebra.Sdk.CommAssembly: SdkApi.Core (in SdkApi.Core.dll) Version: 3.0.3271
Syntax void Write(
byte[] data
)
Sub Write (
data As Byte()
)
void Write(
array<unsigned char>^ data
)
Parameters
- data Byte
- Data 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