[This is preliminary documentation and is subject to change.]
            Adds users to a particular group.
            
    Namespace: 
   OfficeClip.DBLayer.AccountAssembly: OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0
Syntax
| C# | 
|---|
public int AddUsersToGroup( string userList, int groupId, int userId, ref int[] statuses, ref string[] names, ref string[] emailAddresses, ref string[] ldapAccountNames )  | 
| Visual Basic (Declaration) | 
|---|
Public Function AddUsersToGroup ( _ userList As String, _ groupId As Integer, _ userId As Integer, _ ByRef statuses As Integer(), _ ByRef names As String(), _ ByRef emailAddresses As String(), _ ByRef ldapAccountNames As String() _ ) As Integer  | 
| Visual C++ | 
|---|
public: int AddUsersToGroup( String^ userList, int groupId, int userId, array<int>^% statuses, array<String^>^% names, array<String^>^% emailAddresses, array<String^>^% ldapAccountNames )  | 
Parameters
- userList
 - Type: System..::.String
The list of comma separated userDetailIds to be added to a particular group. 
- groupId
 - Type: System..::.Int32
The group id of the group where the users are to be invited/added. 
- userId
 - Type: System..::.Int32
The unique id of the current user 
- statuses
 - Type: array<System..::.Int32>[]()[]%
Array of statuses 
- names
 - Type: array<System..::.String>[]()[]%
Array of names 
- emailAddresses
 - Type: array<System..::.String>[]()[]%
The email address 
- ldapAccountNames
 - Type: array<System..::.String>[]()[]%
The LDAP account names 
