Inheritance: Asn1Object
示例#1
0
        protected override bool Asn1Equals(
            Asn1Object asn1Object)
        {
            if (this == asn1Object)
            {
                return(true);
            }

            DerExternal other = asn1Object as DerExternal;

            if (other == null)
            {
                return(false);
            }

            return(Platform.Equals(directReference, other.directReference) &&
                   Platform.Equals(indirectReference, other.indirectReference) &&
                   Platform.Equals(dataValueDescriptor, other.dataValueDescriptor) &&
                   externalContent.Equals(other.externalContent));
        }