ReadImplicit() private method

private ReadImplicit ( bool constructed, int tag ) : IAsn1Convertible
constructed bool
tag int
return IAsn1Convertible
        public IAsn1Convertible GetObjectParser(
            int tag,
            bool isExplicit)
        {
            if (isExplicit)
            {
                if (!_constructed)
                {
                    throw new IOException("Explicit tags must be constructed (see X.690 8.14.2)");
                }

                return(_parser.ReadObject());
            }

            return(_parser.ReadImplicit(_constructed, tag));
        }