Removes an existing entry from the allowed domains list.

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

Syntax

Visual Basic (Declaration)
Public 
Function 
RemoveFromAllowedDomains ( _
	
oldEntry 
As 
String _
) 
As 
Boolean
C#
public 
bool 
RemoveFromAllowedDomains(
	
string 
oldEntry
)
Visual C++
public:
bool 
RemoveFromAllowedDomains(
	
String^ 
oldEntry
)
JavaScript
function 
removeFromAllowedDomains(
oldEntry);

Parameters

oldEntry
Type: String
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