Delegate that receives Status.


Namespace: PalmSens.Comm
Assembly: PalmSens (in PalmSens.dll)

Syntax

Visual Basic (Declaration)
Public Delegate Sub StatusEventHandler( _ 
   ByVal sender As Object,  _ 
   ByVal e As StatusEventArgs _ 
)
C#
public delegate void StatusEventHandler(
   object sender,
   StatusEventArgs e
)
C++
public delegate void StatusEventHandler(
   Object sender,
   StatusEventArgs e
)
J#
/** delegate */
public delegate void StatusEventHandler(
   object sender,
   StatusEventArgs e
)
JScript
JScript suports the use of delegates, but not the declaration of new ones.

Parameters

sender

Missing <param name="sender"> tag for "T:PalmSens.Comm.StatusEventHandler"

e

Missing <param name="e"> tag for "T:PalmSens.Comm.StatusEventHandler"

See Also