Share via


SerialDataReceivedEventHandler Delegate

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

Represents the method that will handle the DataReceived event of a SerialPort object.

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

Syntax

'Declaration
Public Delegate Sub SerialDataReceivedEventHandler ( _
    sender As Object, _
    e As SerialDataReceivedEventArgs _
)
public delegate void SerialDataReceivedEventHandler(
    Object sender,
    SerialDataReceivedEventArgs e
)
public delegate void SerialDataReceivedEventHandler(
    Object^ sender, 
    SerialDataReceivedEventArgs^ e
)
type SerialDataReceivedEventHandler = 
    delegate of 
        sender:Object * 
        e:SerialDataReceivedEventArgs -> unit
JScript does not support delegates.

Parameters

Remarks

When you create a SerialDataReceivedEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.

See Also

Reference

System.IO.Ports Namespace