Collection class that derives from ArrayList. It provides the minimally required functionality to add instances of typed classes and obtain typed elements through a custom indexer.
Inheritance: System.Collections.ArrayList
Example #1
0
 /// <summary>
 /// Default constructor
 /// </summary>
 public CertificateValues()
 {
     this.encapsulatedX509CertificateCollection = new EncapsulatedX509CertificateCollection();
     this.otherCertificateCollection            = new OtherCertificateCollection();
 }
Example #2
0
		/// <summary>
		/// Default constructor
		/// </summary>
		public CertificateValues()
		{
			this.encapsulatedX509CertificateCollection = new EncapsulatedX509CertificateCollection();
			this.otherCertificateCollection = new OtherCertificateCollection();
		}