System.IO.BACnet.BacnetSerialPortTransport.Write C# (CSharp) 메소드

Write() 공개 메소드

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