DataProtectionCommonExtensions.CreateProtector 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.
Surcharges
CreateProtector(IDataProtectionProvider, IEnumerable<String>) |
Crée une IDataProtector liste d’objectifs donnée. |
CreateProtector(IDataProtectionProvider, String, String[]) |
Crée une IDataProtector liste d’objectifs donnée. |
CreateProtector(IDataProtectionProvider, IEnumerable<String>)
Crée une IDataProtector liste d’objectifs donnée.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::DataProtection::IDataProtector ^ CreateProtector(Microsoft::AspNetCore::DataProtection::IDataProtectionProvider ^ provider, System::Collections::Generic::IEnumerable<System::String ^> ^ purposes);
public static Microsoft.AspNetCore.DataProtection.IDataProtector CreateProtector (this Microsoft.AspNetCore.DataProtection.IDataProtectionProvider provider, System.Collections.Generic.IEnumerable<string> purposes);
static member CreateProtector : Microsoft.AspNetCore.DataProtection.IDataProtectionProvider * seq<string> -> Microsoft.AspNetCore.DataProtection.IDataProtector
<Extension()>
Public Function CreateProtector (provider As IDataProtectionProvider, purposes As IEnumerable(Of String)) As IDataProtector
Paramètres
- provider
- IDataProtectionProvider
à IDataProtectionProvider partir duquel générer la chaîne d’objectif.
- purposes
- IEnumerable<String>
Liste des objectifs qui contribuent à la chaîne d’objectifs. Cette liste doit contenir au moins un élément, et elle ne peut pas contenir d’éléments Null.
Retours
lié IDataProtector à la chaîne d’objectif fournie.
Remarques
Il s’agit d’une méthode pratique qui regroupe plusieurs appels à CreateProtector(String). Pour plus d’informations, consultez la documentation de cette méthode.
S’applique à
CreateProtector(IDataProtectionProvider, String, String[])
Crée une IDataProtector liste d’objectifs donnée.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::DataProtection::IDataProtector ^ CreateProtector(Microsoft::AspNetCore::DataProtection::IDataProtectionProvider ^ provider, System::String ^ purpose, ... cli::array <System::String ^> ^ subPurposes);
public static Microsoft.AspNetCore.DataProtection.IDataProtector CreateProtector (this Microsoft.AspNetCore.DataProtection.IDataProtectionProvider provider, string purpose, params string[] subPurposes);
static member CreateProtector : Microsoft.AspNetCore.DataProtection.IDataProtectionProvider * string * string[] -> Microsoft.AspNetCore.DataProtection.IDataProtector
<Extension()>
Public Function CreateProtector (provider As IDataProtectionProvider, purpose As String, ParamArray subPurposes As String()) As IDataProtector
Paramètres
- provider
- IDataProtectionProvider
à IDataProtectionProvider partir duquel générer la chaîne d’objectif.
- purpose
- String
Objectif principal utilisé pour créer le IDataProtector.
- subPurposes
- String[]
Liste facultative des objectifs secondaires qui contribuent à la chaîne d’objectifs. Si cette liste est fournie, elle ne peut pas contenir d’éléments null.
Retours
lié IDataProtector à la chaîne d’objectif fournie.
Remarques
Il s’agit d’une méthode pratique qui regroupe plusieurs appels à CreateProtector(String). Pour plus d’informations, consultez la documentation de cette méthode.