Removes an existing entry from the trusted domains list.

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

Syntax

Visual Basic (Declaration)
Public 
Function 
RemoveTrustedDomain ( _
	
trustedDomainEntry 
As 

TrustedDomain _
) 
As 
Boolean
C#
public 
bool 
RemoveTrustedDomain(
	

TrustedDomain 
trustedDomainEntry
)
Visual C++
public:
bool 
RemoveTrustedDomain(
	

TrustedDomain^ 
trustedDomainEntry
)
JavaScript
function 
removeTrustedDomain(
trustedDomainEntry);

Parameters

trustedDomainEntry
Type: Microsoft.Rtc.Collaboration . . :: . TrustedDomain
The entry to be removed.

Return Value

Returns True if it was removed. False, if the entry does not exist.

Exceptions

Exception Condition
ArgumentNullException Thrown when the argument passed is null.

See Also