KeePass.Util.AutoTypeEventArgs.AutoTypeEventArgs C# (CSharp) Method

AutoTypeEventArgs() public method

public AutoTypeEventArgs ( string strSequence, bool bObfuscated, PwEntry pe, KeePassLib.PwDatabase pd ) : System
strSequence string
bObfuscated bool
pe PwEntry
pd KeePassLib.PwDatabase
return System
        public AutoTypeEventArgs(string strSequence, bool bObfuscated, PwEntry pe,
            PwDatabase pd)
        {
            if(strSequence == null) throw new ArgumentNullException("strSequence");
            // pe may be null

            m_strSeq = strSequence;
            this.SendObfuscated = bObfuscated;
            this.Entry = pe;
            this.Database = pd;
        }
AutoTypeEventArgs