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

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

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

            return base.Compatible(other);
        }
示例#7
0
 public override bool Compatible(Asn1Type other)
 {
     return GetFinalType().Compatible(other.GetFinalType());
 }