System.IO.Ports.SerialPortBase.Write C# (CSharp) Method

Write() public method

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
return 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