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.

Namespace:  Microsoft.Rtc.Signaling
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Function 
TryCancelRenegotiateDescription ( _
	
signalingHeaders 
As 
IEnumerable(
Of 

SignalingHeader) _
) 
As 
Boolean
C#
public 
bool 
TryCancelRenegotiateDescription(
	
IEnumerable<

SignalingHeader> 
signalingHeaders
)
Visual C++
public:
bool 
TryCancelRenegotiateDescription(
	
IEnumerable<

SignalingHeader^>^ 
signalingHeaders
)
JavaScript
function 
tryCancelRenegotiateDescription(
signalingHeaders);

Parameters

signalingHeaders
Type: IEnumerable < (Of < ( SignalingHeader > ) > )
The signaling headers to use in the Cancel SIP message.

See Also