Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl.TimeStampAndCrl C# (CSharp) Méthode

TimeStampAndCrl() private méthode

private TimeStampAndCrl ( Asn1Sequence seq ) : System
seq Asn1Sequence
Résultat System
		private TimeStampAndCrl(Asn1Sequence seq)
		{
			this.timeStamp = ContentInfo.GetInstance(seq[0]);
			if (seq.Count == 2)
			{
				this.crl = X509.CertificateList.GetInstance(seq[1]);
			}
		}

Same methods

TimeStampAndCrl::TimeStampAndCrl ( ContentInfo timeStamp ) : System