Share via


SerialErrorReceivedEventHandler 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 ErrorReceived event of a SerialPort object.

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

Syntax

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

Parameters

Remarks

When you create a SerialErrorReceivedEventHandler 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