ReadTaggedObject() private method

private ReadTaggedObject ( bool constructed, int tag ) : Asn1Object
constructed bool
tag int
return Asn1Object
 public Asn1Object ToAsn1Object()
 {
     try
     {
         return(_parser.ReadTaggedObject(_constructed, _tagNumber));
     }
     catch (IOException e)
     {
         throw new Asn1ParsingException(e.Message);
     }
 }