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