Method which handles the SendCompleted and DataReceived events


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

Syntax

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

Parameters

sender
The source of the event
args
EventArgs

See Also