Simulator.SimulatedLoginAttemptGenerator.SimulatedLoginAttemptGenerator C# (CSharp) Method

SimulatedLoginAttemptGenerator() public method

The attempt generator needs to know about the experimental configuration and have access to the sets of simulated accounts, IP addresses, and simulated passwords.
public SimulatedLoginAttemptGenerator ( ExperimentalConfiguration experimentalConfiguration, SimulatedAccounts simAccounts, IpPool ipPool, SimulatedPasswords simPasswords ) : System
experimentalConfiguration ExperimentalConfiguration
simAccounts SimulatedAccounts
ipPool IpPool
simPasswords SimulatedPasswords
return System
        public SimulatedLoginAttemptGenerator(ExperimentalConfiguration experimentalConfiguration, SimulatedAccounts simAccounts, IpPool ipPool, SimulatedPasswords simPasswords)
        {
            _simAccounts = simAccounts;
            _experimentalConfiguration = experimentalConfiguration;
            _ipPool = ipPool;
            _simPasswords = simPasswords;
        }