IDataProtectionProvider.CreateProtector(String) Méthode
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.
Crée un IDataProtector objet donné.
public:
Microsoft::AspNetCore::DataProtection::IDataProtector ^ CreateProtector(System::String ^ purpose);
public Microsoft.AspNetCore.DataProtection.IDataProtector CreateProtector (string purpose);
abstract member CreateProtector : string -> Microsoft.AspNetCore.DataProtection.IDataProtector
Public Function CreateProtector (purpose As String) As IDataProtector
Paramètres
- purpose
- String
Objectif à affecter au nouvellement créé IDataProtector.
Retours
IDataProtector lié à l’objectif fourni.
Remarques
Le purpose
paramètre doit être unique pour le cas d’usage prévu ; deux instances différentes IDataProtector créées avec deux valeurs différentes purpose
ne pourront pas déchiffrer les charges utiles de l’autre. La purpose
valeur du paramètre n’est pas destinée à rester secrète.