示例#1
0
 /// <summary>
 /// Create a new space.
 /// </summary>
 /// <param name="spacename">The name of the new space.</param>
 /// <param name="comments">The comment text that appears on the homepage below the space name.</param>
 /// <param name="automatic">If true, an autonatic space and if false, an extended space is created.</param>
 public void CreateSpace(string spacename, string comments, bool automatic)
 {
     _webService.createNewSpace(LoginToken, spacename, comments, automatic);
 }