CngAlgorithmGroup.Equals Method

Definition

Compares two CngAlgorithmGroup objects.

Overloads

Equals(Object)

Compares the specified object to the current CngAlgorithmGroup object.

Equals(CngAlgorithmGroup)

Compares the specified CngAlgorithmGroup object to the current CngAlgorithmGroup object.

Equals(Object)

Compares the specified object to the current CngAlgorithmGroup object.

public:
 override bool Equals(System::Object ^ obj);
public override bool Equals (object obj);
public override bool Equals (object? obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean

Parameters

obj
Object

An object to be compared to the current CngAlgorithmGroup object.

Returns

true if the obj parameter is a CngAlgorithmGroup that specifies the same algorithm group as the current object; otherwise, false.

Applies to

Equals(CngAlgorithmGroup)

Compares the specified CngAlgorithmGroup object to the current CngAlgorithmGroup object.

public:
 virtual bool Equals(System::Security::Cryptography::CngAlgorithmGroup ^ other);
public bool Equals (System.Security.Cryptography.CngAlgorithmGroup other);
public bool Equals (System.Security.Cryptography.CngAlgorithmGroup? other);
override this.Equals : System.Security.Cryptography.CngAlgorithmGroup -> bool
Public Function Equals (other As CngAlgorithmGroup) As Boolean

Parameters

other
CngAlgorithmGroup

An object to be compared to the current CngAlgorithmGroup object.

Returns

true if the other parameter specifies the same algorithm group as the current object; otherwise, false.

Implements

Applies to