public override bool Compatible(Asn1Type other) { ObjectIdentifier o = other.GetFinalType() as ObjectIdentifier; if (o == null) return false; return true; }
public override bool Compatible(Asn1Type other) { return other.GetFinalType() is GeneralizedTimeType; }
public override bool Compatible(Asn1Type other) { return other.GetFinalType() is UTCTimeType; }
public override bool Compatible(Asn1Type other) { return other.GetFinalType() is NumericStringType; }
public override bool Compatible(Asn1Type other) { OctetStringType o = other.GetFinalType() as OctetStringType; if (o == null) return false; return true; }
public override bool Compatible(Asn1Type other) { SequenceOfType o = other.GetFinalType() as SequenceOfType; if (o == null) return false; return base.Compatible(other); }
public override bool Compatible(Asn1Type other) { return GetFinalType().Compatible(other.GetFinalType()); }