System.IO.BACnet.BacnetSerialPortTransport.Write C# (CSharp) Méthode

Write() public méthode

public Write ( byte buffer, int offset, int length ) : void
buffer byte
offset int
length int
Résultat void
        public void Write(byte[] buffer, int offset, int length)
        {
            if (m_port == null) return;
            m_port.Write(buffer, offset, length);
        }