Represents the method that will handle the Connecting and Connected events


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

Syntax

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

Parameters

sender
The source of the event
args
A ConnectionEventsArgs object that defines the connection

See Also