Gets or sets the value indicating whether a mutual TLS connection is required for outgoing TLS connections. If the certificate information was not set, then this flag cannot be set to true. Turning off Mutual TLS will clear the allowed domains list. Turning on Mutual TLS will initialize the allowed domains to contain just the local host.

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

Syntax

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

Exceptions

Exception Condition
InvalidOperationException Thrown when the set operation is called for a connection manager that is not listening or does not have a certificate.

See Also