Org.BouncyCastle.X509.X509CertificatePair.X509CertificatePair C# (CSharp) Method

X509CertificatePair() public method

Constructor from a ASN.1 CertificatePair structure.
public X509CertificatePair ( CertificatePair pair ) : System
pair Org.BouncyCastle.Asn1.X509.CertificatePair The CertificatePair ASN.1 object.
return System
		public X509CertificatePair(
			CertificatePair pair)
		{
			if (pair.Forward != null)
			{
				this.forward = new X509Certificate(pair.Forward);
			}
			if (pair.Reverse != null)
			{
				this.reverse = new X509Certificate(pair.Reverse);
			}
		}

Same methods

X509CertificatePair::X509CertificatePair ( X509Certificate forward, X509Certificate reverse ) : System