SignalingSession.TryCancelRenegotiateDescription Method

Definition

Overloads

TryCancelRenegotiateDescription()

Tries to cancel a pending renegotiation. Returns if cancel is either sent or setup to be sent. This method does not guarantee that renegotiation will not receive a final response since there is possibility that a final response is on the way before cancel message can reach the remote.

TryCancelRenegotiateDescription(IEnumerable<SignalingHeader>)

Tries to cancel a pending renegotiation. Returns if cancel is either sent or setup to be sent. This method does not guarantee that renegotiation will not receive a final response since there is possibility that a final response is on the way before cancel message can reach the remote.

TryCancelRenegotiateDescription()

Tries to cancel a pending renegotiation. Returns if cancel is either sent or setup to be sent. This method does not guarantee that renegotiation will not receive a final response since there is possibility that a final response is on the way before cancel message can reach the remote.

public:
 bool TryCancelRenegotiateDescription();
public bool TryCancelRenegotiateDescription ();
member this.TryCancelRenegotiateDescription : unit -> bool
Public Function TryCancelRenegotiateDescription () As Boolean

Returns

Boolean

Applies to

TryCancelRenegotiateDescription(IEnumerable<SignalingHeader>)

Tries to cancel a pending renegotiation. Returns if cancel is either sent or setup to be sent. This method does not guarantee that renegotiation will not receive a final response since there is possibility that a final response is on the way before cancel message can reach the remote.

public:
 bool TryCancelRenegotiateDescription(System::Collections::Generic::IEnumerable<Microsoft::Rtc::Signaling::SignalingHeader ^> ^ signalingHeaders);
public bool TryCancelRenegotiateDescription (System.Collections.Generic.IEnumerable<Microsoft.Rtc.Signaling.SignalingHeader> signalingHeaders);
member this.TryCancelRenegotiateDescription : seq<Microsoft.Rtc.Signaling.SignalingHeader> -> bool
Public Function TryCancelRenegotiateDescription (signalingHeaders As IEnumerable(Of SignalingHeader)) As Boolean

Parameters

signalingHeaders
IEnumerable<SignalingHeader>

The signaling headers to use in the Cancel SIP message. Can be null.

Returns

Boolean

Applies to