System.IO.Ports.SerialPortBase.Write C# (CSharp) Méthode

Write() public méthode

Writes data to a serial port.
The method does not return until all data are sent, including output buffer pauses and/or hardware flow control pauses, if applicable.
public Write ( ) : void
Résultat void
        public void Write(params byte[] data)
        {
            Write(data, 0, data.Length);
        }

Same methods

SerialPortBase::Write ( byte data, int offset, int length ) : void
SerialPortBase::Write ( string text ) : void