Org.BouncyCastle.Asn1.DerApplicationSpecific.Asn1Equals C# (CSharp) Méthode

Asn1Equals() protected méthode

protected Asn1Equals ( Asn1Object asn1Object ) : bool
asn1Object Asn1Object
Résultat bool
		protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
			DerApplicationSpecific other = asn1Object as DerApplicationSpecific;

			if (other == null)
				return false;

			return this.isConstructed == other.isConstructed
				&& this.tag == other.tag
				&& Arrays.AreEqual(this.octets, other.octets);
        }