AuthenticationOptions.AddScheme Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
AddScheme(String, Action<AuthenticationSchemeBuilder>) |
Přidá .AuthenticationScheme |
AddScheme<THandler>(String, String) |
Přidá .AuthenticationScheme |
AddScheme(String, Action<AuthenticationSchemeBuilder>)
- Zdroj:
- AuthenticationOptions.cs
- Zdroj:
- AuthenticationOptions.cs
- Zdroj:
- AuthenticationOptions.cs
Přidá .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))
Parametry
- name
- String
Název přidaných schématu.
- configureBuilder
- Action<AuthenticationSchemeBuilder>
Nakonfiguruje schéma.
Platí pro
AddScheme<THandler>(String, String)
- Zdroj:
- AuthenticationOptions.cs
- Zdroj:
- AuthenticationOptions.cs
- Zdroj:
- AuthenticationOptions.cs
Přidá .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)
Parametry typu
- THandler
Osoba odpovědná IAuthenticationHandler za tento režim.
Parametry
- name
- String
Název přidaných schématu.
- displayName
- String
Zobrazovaný název schématu.