Delegate that receives Debug Information.


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

Syntax

Visual Basic (Declaration)
Public Delegate Sub DebugInformationEventHandler( _ 
   ByVal sender As Object,  _ 
   ByVal e As DebugInformationEventArgs _ 
)
C#
public delegate void DebugInformationEventHandler(
   object sender,
   DebugInformationEventArgs e
)
C++
public delegate void DebugInformationEventHandler(
   Object sender,
   DebugInformationEventArgs e
)
J#
/** delegate */
public delegate void DebugInformationEventHandler(
   object sender,
   DebugInformationEventArgs 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.DebugInformationEventHandler"

e

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

See Also