Raised when debug information is received from the PalmSens.


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

Syntax

Visual Basic (Declaration)
Public Event DebugInformation As DebugInformationEventHandler 
C#
public event DebugInformationEventHandler DebugInformation
C++
public:
 virtual event DebugInformationEventHandler DebugInformation {
    void add(DebugInformationEventHandler value) sealed ;
    void remove(DebugInformationEventHandler value) sealed ;
}
J#
/** event */
public final void add_DebugInformation(DebugInformationEventHandler value);

/** event */
public final void remove_DebugInformation(DebugInformationEventHandler value);
JScript
JScript suports the use of events, but not the declaration of new ones.

Event Data

The event handler receives an argument of type DebugInformationEventArgs containing data related to this event. The following DebugInformationEventArgs property provides information specific to this event.

PropertyDescription
Text 

See Also