onStatusReceived events delegate.


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

Syntax

Visual Basic (Declaration)
Public Delegate Sub ScreenUPG.onStatusReceivedHandler( _ 
   ByVal status As Short,  _ 
   ByRef details As String _ 
)
C#
public delegate void ScreenUPG.onStatusReceivedHandler(
   short status,
   ref string details
)
C++
public delegate void ScreenUPG.onStatusReceivedHandler(
   short status,
   String% details
)
J#
/** delegate */
public delegate void ScreenUPG.onStatusReceivedHandler(
   short status,
   string details
)
JScript
JScript suports the use of delegates, but not the declaration of new ones.

Parameters

status
Type of status event received.
details
Specific to status event. null if no details are present.

See Also