示例#1
0
 /// <summary>
 /// Adds a user to a group in a space. The user and group both must exist in the space.
 /// </summary>
 /// <param name="spaceID">The space id of the space to add the user to a group.</param>
 /// <param name="user">The user to add, which must be a member of the space already.</param>
 /// <param name="group">The group to add the user to. The group must be member of the space.</param>
 public void AddUserToGroupInSpace(string spaceID, string user, string group)
 {
     _webService.addUserToGroupInSpace(LoginToken, user, group, spaceID);
 }
 public void AddUserToGroupInSpace(string token, string username, string groupName, string spaceId)
 {
     _service.addUserToGroupInSpace(token, username, groupName, spaceId);
 }