示例#1
0
 /// <summary>
 /// Remove an existing user from a space.
 /// </summary>
 /// <param name="spaceID">The ID of the space to query.</param>
 /// <param name="username">The user to remove from the space.</param>
 public void RemoveUserFromSpace(string spaceID, string username)
 {
     _webService.removeUserFromSpace(LoginToken, username, spaceID);
 }