/// <summary> /// Default constructor /// </summary> public CRLRefs() { this.crlRefCollection = new CRLRefCollection(); }
private bool ExistsCRL(CRLRefCollection collection, string issuer) { foreach (CRLRef clrRef in collection) { if (clrRef.CRLIdentifier.Issuer == issuer) { return true; } } return false; }