Example #1
0
 static public void CreateUser(string tenantName, string username, string password, string email)
 {
     using (BasicChannel channel = new BasicChannel())
     {
         channel.CreateUser(tenantName, username, password, email);
     }
 }