AuthenticationOptions.AddScheme 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
AddScheme(String, Action<AuthenticationSchemeBuilder>) |
Ajoute un AuthenticationScheme. |
AddScheme<THandler>(String, String) |
Ajoute un AuthenticationScheme. |
AddScheme(String, Action<AuthenticationSchemeBuilder>)
- Source:
- AuthenticationOptions.cs
- Source:
- AuthenticationOptions.cs
- Source:
- AuthenticationOptions.cs
Ajoute un AuthenticationScheme.
public:
void AddScheme(System::String ^ name, Action<Microsoft::AspNetCore::Authentication::AuthenticationSchemeBuilder ^> ^ configureBuilder);
public void AddScheme (string name, Action<Microsoft.AspNetCore.Authentication.AuthenticationSchemeBuilder> configureBuilder);
member this.AddScheme : string * Action<Microsoft.AspNetCore.Authentication.AuthenticationSchemeBuilder> -> unit
Public Sub AddScheme (name As String, configureBuilder As Action(Of AuthenticationSchemeBuilder))
Paramètres
- name
- String
Nom du schéma ajouté.
- configureBuilder
- Action<AuthenticationSchemeBuilder>
Configure le schéma.
S’applique à
AddScheme<THandler>(String, String)
- Source:
- AuthenticationOptions.cs
- Source:
- AuthenticationOptions.cs
- Source:
- AuthenticationOptions.cs
Ajoute un AuthenticationScheme.
public:
generic <typename THandler>
where THandler : Microsoft::AspNetCore::Authentication::IAuthenticationHandler void AddScheme(System::String ^ name, System::String ^ displayName);
public void AddScheme<THandler> (string name, string displayName) where THandler : Microsoft.AspNetCore.Authentication.IAuthenticationHandler;
public void AddScheme<THandler> (string name, string? displayName) where THandler : Microsoft.AspNetCore.Authentication.IAuthenticationHandler;
member this.AddScheme : string * string -> unit (requires 'Handler :> Microsoft.AspNetCore.Authentication.IAuthenticationHandler)
Public Sub AddScheme(Of THandler As IAuthenticationHandler) (name As String, displayName As String)
Paramètres de type
- THandler
Responsable IAuthenticationHandler du schéma.
Paramètres
- name
- String
Nom du schéma ajouté.
- displayName
- String
Nom d’affichage du schéma.