ClientTransaction.SendRequest(Request) Method

Definition

The SendRequest method sends a SIP request to a server transaction on a proxy or user account system (UAS).

public:
 virtual void SendRequest(Microsoft::Rtc::Sip::Request ^ request);
public virtual void SendRequest (Microsoft.Rtc.Sip.Request request);

Parameters

request
Request

Remarks

Two requests cannot be sent through the same client transaction. If a second request is attempted, InvalidOperationException is thrown.

To fork a request, call CreateBranch() on the parent ServerTransaction object that handles the originating request. ClientTransaction.SendRequest must be called immediately on the new ClientTransaction object that is created by the call to ServerTransaction.CreateBranch.

Applies to