BraintreeEncryption.Library.BouncyCastle.Asn1.Asn1TaggedObject.Asn1TaggedObject C# (CSharp) Method

Asn1TaggedObject() protected method

protected Asn1TaggedObject ( bool explicitly, int tagNo, Asn1Encodable obj ) : System
explicitly bool
tagNo int
obj Asn1Encodable
return System
        protected Asn1TaggedObject(
            bool            explicitly,
            int             tagNo,
            Asn1Encodable   obj)
        {
            // IAsn1Choice marker interface 'insists' on explicit tagging
            this.explicitly = explicitly || (obj is IAsn1Choice);
            this.tagNo = tagNo;
            this.obj = obj;
        }

Same methods

Asn1TaggedObject::Asn1TaggedObject ( int tagNo, Asn1Encodable obj ) : System