CngProvider.Equals Method

Definition

Compares two CngProvider objects.

Overloads

Equals(Object)

Compares the specified object to the current CngProvider object.

Equals(CngProvider)

Compares the specified CngProvider object to the current CngProvider object.

Equals(Object)

Source:
CngProvider.cs
Source:
CngProvider.cs
Source:
CngProvider.cs

Compares the specified object to the current CngProvider 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 CngProvider object.

Returns

true if the obj parameter is a CngProvider that specifies the same key storage provider(KSP) as the current object; otherwise, false.

Applies to

Equals(CngProvider)

Source:
CngProvider.cs
Source:
CngProvider.cs
Source:
CngProvider.cs

Compares the specified CngProvider object to the current CngProvider object.

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

Parameters

other
CngProvider

An object to be compared to the current CngProvider object.

Returns

true if the other parameter specifies the same key storage provider (KSP) as the current object; otherwise, false.

Implements

Applies to