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.
Наследование: System.Collections.ArrayList
Пример #1
0
 /// <summary>
 /// Default constructor
 /// </summary>
 public CRLRefs()
 {
     this.crlRefCollection = new CRLRefCollection();
 }
Пример #2
0
        private bool ExistsCRL(CRLRefCollection collection, string issuer)
        {
            foreach (CRLRef clrRef in collection)
            {
                if (clrRef.CRLIdentifier.Issuer == issuer)
                {
                    return true;
                }
            }

            return false;
        }
Пример #3
0
 /// <summary>
 /// Default constructor
 /// </summary>
 public CRLRefs()
 {
     this.crlRefCollection = new CRLRefCollection();
 }