Gets or sets whether incoming messages are routed to the hosted endpoints by this connection manager.

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

Syntax

Visual Basic (Declaration)
Public 
Property 
StrictDispatching 
As 
Boolean
C#
public 
bool 
StrictDispatching { 
get; 
set; }
Visual C++
public:
property 
bool 
StrictDispatching {
	
bool 
get ();
	
void 
set (
bool 
value);
}
JavaScript
function get_
strictDispatching();
function set_
strictDispatching(
value);

Remarks

By default, this flag is false. This flag is used only when there is only one peer-to-peer endpoint hosted by the connection manager. Normally, incoming messages are routed to the endpoint only when the Toheader URI and epid (if any) match those of the endpoint. If this flag is set, the message is routed to the single peer-to-peer endpoint ignoring the Toheader values. In this case, it is the responsibility of the endpoint or application using the endpoint to handle the situation appropriately.

See Also