This event is fired after a connection has been accepted but before the handler's Go method has been called. Application developers should intercept connections here if they wish to block the connection for any reason so that no data gets passed over the communication channel.


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

Syntax

Visual Basic (Declaration)
Public Event Connecting As MunjaService.ConnectingHandler 
C#
public event MunjaService.ConnectingHandler Connecting
C++
public:
 virtual event MunjaService.ConnectingHandler Connecting {
    void add(MunjaService.ConnectingHandler value) sealed ;
    void remove(MunjaService.ConnectingHandler value) sealed ;
}
J#
/** event */
public final void add_Connecting(MunjaService.ConnectingHandler value);

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

See Also