Gets or sets whether DNS load balancing is disabled. By default, DNS load balancing is disabled.

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

Syntax

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

Remarks

Setting this property to false will enable DNS load balancing.

When enabled, DNS load balancing will rotate between addresses returned from DNS to reach the destination. If one of the addresses is down, then alternate addresses will be tried.

It is recommended that this be configured before listening or sending request on the connection manager.

See Also