ReadImplicit() private méthode

private ReadImplicit ( bool constructed, int tag ) : IAsn1Convertible
constructed bool
tag int
Résultat 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));
 }
Exemple #2
0
 public IAsn1Convertible GetObjectParser(int tag, bool isExplicit)
 {
     //IL_0010: Unknown result type (might be due to invalid IL or missing references)
     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));
 }