Org.BouncyCastle.Asn1.DerExternal.Asn1Equals C# (CSharp) Метод

Asn1Equals() защищенный Метод

protected Asn1Equals ( Asn1Object asn1Object ) : bool
asn1Object Asn1Object
Результат bool
		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);
		}