AuthenticationOptions.AddScheme Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
AddScheme(String, Action<AuthenticationSchemeBuilder>) |
Dodaje element AuthenticationScheme. |
AddScheme<THandler>(String, String) |
Dodaje element AuthenticationScheme. |
AddScheme(String, Action<AuthenticationSchemeBuilder>)
- Źródło:
- AuthenticationOptions.cs
- Źródło:
- AuthenticationOptions.cs
- Źródło:
- AuthenticationOptions.cs
Dodaje element 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
Nazwa dodawanego schematu.
- configureBuilder
- Action<AuthenticationSchemeBuilder>
Konfiguruje schemat.
Dotyczy
AddScheme<THandler>(String, String)
- Źródło:
- AuthenticationOptions.cs
- Źródło:
- AuthenticationOptions.cs
- Źródło:
- AuthenticationOptions.cs
Dodaje element 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
Odpowiedzialny IAuthenticationHandler za program.
Parametry
- name
- String
Nazwa dodawanego schematu.
- displayName
- String
Nazwa wyświetlana schematu.