ResponseReceivedEventArgs Class

Definition

The ResponseReceivedEventArgs class defines information to an application regarding the arrival of a SIP response, and contains a Response object for the response that generated the event.The ResponseReceivedEventArgs object is returned in two ways:First, it is passed to a method defined on the application and specified by a call to the Dispatch MSPL built-in function from the application manifest message filter script. In this case, the method handling the dispatched response must have a signature matching that of the ResponseReceivedEventHandler delegate.Second, it is passed to an event handler registered for the ResponseReceived. This event is only available for ClientTransaction objects who have previously sent a request with SendRequest(Request), and handle any responses associated with this request.The ResponseReceivedEventArgs class is derived from the System.Object class.

public ref class ResponseReceivedEventArgs
public class ResponseReceivedEventArgs
Public Class ResponseReceivedEventArgs
Inheritance
ResponseReceivedEventArgs

Properties

ClientTransaction

The ClientTransaction property contains a reference to the ClientTransaction object for which the Response object is intended.

Parameters

Optional dispatch call parameters.

Response

The Response property contains the Response object that is intended for the client transaction.

Applies to