RequestReceivedEventArgs Class

Definition

The RequestReceivedEventArgs class defines information to an application regarding the arrival of a SIP request.When a request has been successfully dispatched by the MSPL message filter (see the Dispatch built-in function), an event containing a RequestReceivedEventArgs object will be dispatched to the specified method (whose signature must match the ResponseReceivedEventHandler delegate). RequestReceivedEventArgs contains the request as the Request property.An instance of ServerTransaction is created as a property of RequestReceivedEventArgs. This property represents the new server transaction for the request. To forward this request, call CreateBranch() to create a ClientTransaction and call SendRequest(Request), passing the Request object in the RequestReceivedEventArgs.Request property.

public ref class RequestReceivedEventArgs
public class RequestReceivedEventArgs
Public Class RequestReceivedEventArgs
Inheritance
RequestReceivedEventArgs

Properties

Parameters

Optional dispatch call parameters.

Request

The Request property contains the Request object for the request that initiated the server transaction that is contained in ServerTransaction.

ServerTransaction

The ServerTransaction property contains the new ServerTransaction object that will service the received request.

Applies to