CngAlgorithmGroup.Equals Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
- Source:
- CngAlgorithmGroup.cs
- Source:
- CngAlgorithmGroup.cs
- Source:
- CngAlgorithmGroup.cs
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)
- Source:
- CngAlgorithmGroup.cs
- Source:
- CngAlgorithmGroup.cs
- Source:
- CngAlgorithmGroup.cs
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
.