public bool ClearUsersFromGroup(string groupName)
The name of the group
bool
using System;
public class CPHInline
{
public bool Execute()
{
//Define the groupname you want to clear
string groupName = "Test Group";
//Method returns a bool indicating the success of clearing the group
bool usersCleared = CPH.ClearUsersFromGroup(groupName); return true;
}
}