Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue.InfoTypeAndValue C# (CSharp) Method

InfoTypeAndValue() private method

private InfoTypeAndValue ( Asn1Sequence seq ) : System
seq Asn1Sequence
return System
        private InfoTypeAndValue(Asn1Sequence seq)
        {
            infoType = DerObjectIdentifier.GetInstance(seq[0]);

            if (seq.Count > 1)
            {
                infoValue = (Asn1Encodable)seq[1];
            }
        }

Same methods

InfoTypeAndValue::InfoTypeAndValue ( DerObjectIdentifier infoType ) : System
InfoTypeAndValue::InfoTypeAndValue ( DerObjectIdentifier infoType, Asn1Encodable optionalValue ) : System