System.Security.Policy.HashMembershipCondition.HashMembershipCondition.Equals C# (CSharp) Method

Equals() public method

public Equals ( object o ) : bool
o object
return bool
		public override bool Equals (object o)
		{
			HashMembershipCondition other = (o as HashMembershipCondition);
			if (other == null)
				return false;

			return ((other.HashAlgorithm == hash_algorithm) &&
				Compare (hash_value, other.hash_value));
		}