KeePass.Util.AutoTypeEventArgs.AutoTypeEventArgs C# (CSharp) Méthode

AutoTypeEventArgs() public méthode

public AutoTypeEventArgs ( string strSequence, bool bObfuscated, PwEntry pe, KeePassLib.PwDatabase pd ) : System
strSequence string
bObfuscated bool
pe PwEntry
pd KeePassLib.PwDatabase
Résultat 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