RequestReceivedEventHandler

The RequestReceivedEventHandler delegate handles incoming requests dispatched to the application.

Syntax

  Copy imageCopy Code
public delegate void RequestReceivedEventHandler(
  object sender,
  RequestReceivedEventArgs e
);

Syntax

  Copy imageCopy Code
Public Delegate Sub RequestReceivedEventHandler( _
  ByVal sender As object, _
  ByVal e As RequestReceivedEventArgs _
)

Parameters

sender

The source of the unhandled exception event.

e

RequestReceivedEventArgs object that contains the event data.

Remarks

RequestReceivedEventArgs contains the incoming Request Sip Class object, as well as the ServerTransaction object for which it is intended.

Requirements

Redistributable: Requires Microsoft Lync Server 2010

Namespace:Microsoft.Rtc.Sip

Assembly: ServerAgent (in ServerAgent.dll)

See Also