Exemplo n.º 1
0
 public Task_GeneratePasswords(ADClasses.AD_UsersCollection users, int length)
 {
     this.length = length;
     this.users = users;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Sets a uniform password on all AD distinguishedName properties passed in users collection.
 /// </summary>
 /// <example>
 /// //the 8 is erroneous. sets all passwords to @school1
 /// Tasks.Task_GeneratePasswords task = new Tasks.Task_GeneratePasswords(users, 8, "@school1");</example>
 /// <param name="users"></param>
 /// <param name="length"></param>
 /// <param name="password"></param>
 public Task_GeneratePasswords(ADClasses.AD_UsersCollection users, int length, string password)
 {
     this.length = length;
     this.users = users;
     this.uniformPassword = password;
 }
Exemplo n.º 3
0
 public Task_GeneratePasswords(ADClasses.AD_UsersCollection users)
 {
     this.users = users;
 }