示例#1
0
 /// <summary>
 /// Creates a new user group in a space. If the group exists it does nothing.
 /// </summary>
 /// <param name="spaceID">The ID of the space to query.</param>
 /// <param name="groupName">The name of the group to create.</param>
 public void AddGroupToSpace(string spaceID, string groupName)
 {
     _webService.addGroupToSpace(LoginToken, groupName, spaceID);
 }