Esempio n. 1
0
        public override bool Compatible(Asn1Type other)
        {
            ObjectIdentifier o = other.GetFinalType() as ObjectIdentifier;
            if (o == null)
                return false;

            return true;
        }
Esempio n. 2
0
 public override bool Compatible(Asn1Type other)
 {
     return other.GetFinalType() is GeneralizedTimeType;
 }
Esempio n. 3
0
 public override bool Compatible(Asn1Type other)
 {
     return other.GetFinalType() is UTCTimeType;
 }
Esempio n. 4
0
 public override bool Compatible(Asn1Type other)
 {
     return other.GetFinalType() is NumericStringType;
 }
Esempio n. 5
0
        public override bool Compatible(Asn1Type other)
        {
            OctetStringType o = other.GetFinalType() as OctetStringType;
            if (o == null)
                return false;

            return true;
        }
Esempio n. 6
0
        public override bool Compatible(Asn1Type other)
        {
            SequenceOfType o = other.GetFinalType() as SequenceOfType;
            if (o == null)
                return false;

            return base.Compatible(other);
        }
Esempio n. 7
0
 public override bool Compatible(Asn1Type other)
 {
     return GetFinalType().Compatible(other.GetFinalType());
 }