Request.CreateResponse Method

Definition

Overloads

CreateResponse()

Creates a response to this request.

CreateResponse(Int32)

Creates a response to this message with the specified status code.

CreateResponse()

Creates a response to this request.

public:
 virtual Microsoft::Rtc::Sip::Response ^ CreateResponse();
public virtual Microsoft.Rtc.Sip.Response CreateResponse ();
Public Overridable Function CreateResponse () As Response

Returns

Remarks

A Response object contains a specific status code that is sent to the client transaction, and it indicates the status of the request.

Applies to

CreateResponse(Int32)

Creates a response to this message with the specified status code.

public:
 Microsoft::Rtc::Sip::Response ^ CreateResponse(int statusCode);
public Microsoft.Rtc.Sip.Response CreateResponse (int statusCode);
Public Function CreateResponse (statusCode As Integer) As Response

Parameters

statusCode
Int32

Returns

Remarks

A Response object contains a specific status code that is sent to the client transaction, and it indicates the status of the request.

Applies to