truecryptbrute.Wordlist.PasswordProgressEventArgs.PasswordProgressEventArgs C# (CSharp) Method

PasswordProgressEventArgs() public method

public PasswordProgressEventArgs ( int uWordListCurrentLine, int uWordListLineCount, string uPass ) : System
uWordListCurrentLine int
uWordListLineCount int
uPass string
return System
        public PasswordProgressEventArgs(int uWordListCurrentLine, int uWordListLineCount, string uPass)
        {
            WordListCurrentLine = uWordListCurrentLine;
            WordListLineCount = uWordListLineCount;
            WordListCurrentPass = uPass;
        }
PasswordProgressEventArgs