System.Security.Cryptography.X509Certificates.X509CertificateCollection.this C# (CSharp) Method

this() public method

public this ( int index ) : X509Certificate
index int
return X509Certificate
        public X509Certificate this[int index]
        {
            get
            {
                return ((X509Certificate)(List[index]));
            }
            set
            {
                if (value == null)
                    throw new ArgumentNullException(nameof(value));

                List[index] = value;
            }
        }

Same methods

X509CertificateCollection::this ( int index ) : System.Security.Cryptography.X509Certificates.X509Certificate