UsbConnection.Write Method (Byte[])
|
Writes data.Length bytes from the specified byte array to this output stream.
Namespace:
Zebra.Sdk.Comm
Assembly:
SdkApi_Desktop (in SdkApi_Desktop.dll) Version: 2.13.898
Syntaxpublic override void Write(
byte[] data
)
Public Overrides Sub Write (
data As Byte()
)
public:
virtual void Write(
array<unsigned char>^ data
) override
Parameters
- data
- Type:System.Byte[]
Data to write
Implements
Connection.Write(Byte[])
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