Method which handles the ResponseReceived event


Namespace: Benchmarx.Munja
Assembly: Munja (in Munja.dll)

Syntax

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

Parameters

sender
the source of the event
handler
the handler associated with the connection

See Also