This delegate is used for incoming requests that are dispatched to the application.

Namespace:  Microsoft.Rtc.Sip
Assembly:  ServerAgent(in ServerAgent.dll)

Syntax

Visual Basic (declaration)
Public 
Delegate 
Sub 
RequestReceivedEventHandler ( _
	
sender 
As 
Object, _
	
e 
As 

RequestReceivedEventArgs _
)
Visual Basic (usage)
Dim 
instance 
As 
New 
RequestReceivedEventHandler(
AddressOf HandlerMethod)
C#
public 
delegate 
void 
RequestReceivedEventHandler(
	
Object 
sender,
	

RequestReceivedEventArgs 
e
)

Parameters

sender
Type: System . . :: . . Object

The source of the event.

e
Type: Microsoft.Rtc.Sip . . :: . . RequestReceivedEventArgs

Contains event data.

See also