Write Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Writes a specified number of bytes to the serial port using data from a buffer.

Namespace:  System.IO.Ports
Assembly:  Microsoft.SPOT.Hardware.SerialPort (in Microsoft.SPOT.Hardware.SerialPort.dll)

Syntax

'Declaration
Public Overrides Sub Write ( _
    buffer As Byte(), _
    offset As Integer, _
    count As Integer _
)
public override void Write(
    byte[] buffer,
    int offset,
    int count
)
public:
virtual void Write(
    array<unsigned char>^ buffer, 
    int offset, 
    int count
) override
abstract Write : 
        buffer:byte[] * 
        offset:int * 
        count:int -> unit 
override Write : 
        buffer:byte[] * 
        offset:int * 
        count:int -> unit 
public override function Write(
    buffer : byte[], 
    offset : int, 
    count : int
)

Parameters

  • buffer
    Type: array<System. . :: . .Byte> [] () [] []
    The byte array that contains the data to write to the port.
  • offset
    Type: System. . :: . .Int32
    The zero-based byte offset in the buffer parameter at which to begin copying bytes to the port.

Remarks

Use this method when you want to write to a byte buffer to create output to a serial port.

.NET Framework Security

See Also

Reference

SerialPort Class

System.IO.Ports Namespace