[TIBCO.EMS .NET Admin client library 8.1 documentation]

Remove the users for the given array of userNames from the group for the given groupName.

Namespace:  TIBCO.EMS.ADMIN
Assembly:  TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)

Syntax

public void RemoveUsersFromGroup(
	string groupName,
	string[] userNames
)
Public Sub RemoveUsersFromGroup ( _
	groupName As String, _
	userNames As String() _
)
public:
void RemoveUsersFromGroup(
	String^ groupName, 
	array<String^>^ userNames
)

Parameters

groupName
Type: System..::.String
The group that the users will be removed from.
userNames
Type: array< System..::.String >[]()[]
The users to be removed.

Exceptions

ExceptionCondition
TIBCO.EMS.ADMIN..::.AdminExceptionif not authorized or an error occurred.
TIBCO.EMS.ADMIN..::.AdminInvalidNameException if groupName or one of the user names is not a legal name.
System..::.ArgumentException if userNames is null;

See Also