Exemplo n.º 1
0
        public X509Certificate2Collection Find(X509FindType findType, object findValue, bool validOnly)
        {
            if (findValue == null)
            {
                throw new ArgumentNullException(nameof(findValue));
            }

            return(FindPal.FindFromCollection(this, findType, findValue, validOnly));
        }
Exemplo n.º 2
0
        public X509Certificate2Collection Find(X509FindType findType, object findValue, bool validOnly)
        {
            ArgumentNullException.ThrowIfNull(findValue);

            return(FindPal.FindFromCollection(this, findType, findValue, validOnly));
        }