CngProperty.Equality(CngProperty, CngProperty) Opérateur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Détermine si deux CngProperty objets spécifient le même nom, valeur et options de propriété.
public:
static bool operator ==(System::Security::Cryptography::CngProperty left, System::Security::Cryptography::CngProperty right);
public static bool operator ==(System.Security.Cryptography.CngProperty left, System.Security.Cryptography.CngProperty right);
static member ( = ) : System.Security.Cryptography.CngProperty * System.Security.Cryptography.CngProperty -> bool
Public Shared Operator == (left As CngProperty, right As CngProperty) As Boolean
Paramètres
- left
- CngProperty
Objet qui spécifie une propriété d’une clé ou d’un fournisseur CNG (Cryptography Next Generation).
- right
- CngProperty
Deuxième objet, à comparer à l’objet identifié par le left paramètre.
Retours
true si les deux objets spécifient la même propriété ; sinon, false.
Remarques
CngProperty les objets sont considérés comme égaux si leurs noms, valeurs et options sont équivalents. La comparaison de noms est effectuée de manière sensible à la casse.
La méthode équivalente pour cet opérateur est CngProperty.Equals(CngProperty).