I2CDataReceivedEventHandler Delegate

Phcc Interface Library .NET / COM

Event handler delegate for the I2CDataReceived event.

Namespace:  Phcc
Assembly:  Phcc (in Phcc.dll)

Syntax

Visual Basic (Declaration)
<ComVisibleAttribute(False)> _
Public Delegate Sub I2CDataReceivedEventHandler ( _
	sender As Object, _
	e As I2CDataReceivedEventArgs _
)
C#
[ComVisibleAttribute(false)]
public delegate void I2CDataReceivedEventHandler(
	Object sender,
	I2CDataReceivedEventArgs e
)

Parameters

sender
Type: System..::.Object
the object raising the event.
e
Type: Phcc..::.I2CDataReceivedEventArgs
an I2CDataReceivedEventArgs object containing detailed information about the event.

See Also