Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[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
- sender
Type: System. . :: . .Object
The sender of the event, which is the SerialPort object.
- e
Type: System.IO.Ports. . :: . .SerialErrorReceivedEventArgs
A SerialErrorReceivedEventArgs object that contains the event data.
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.