Gets the value of associated SignalingContext for the flow.

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

Syntax

Visual Basic (Declaration)
Public 
Property 
SignalingContext 
As 

CallDialogContext
C#
public 

CallDialogContext 
SignalingContext { 
get; 
protected 
set; }
Visual C++
public:
property 

CallDialogContext^ 
SignalingContext {
	

CallDialogContext^ 
get ();
	
void 
set (

CallDialogContext^ 
value);
}
JavaScript
function get_
signalingContext();
function set_
signalingContext(
value);

Remarks

The derived class should use the protected set methhod to update the signalingContext, if the same instance of the flow is used, but the underlying signaling session is updated. It is mainly required for an escalation scenario.

See Also