AuthenticationSchemeProvider Costruttori
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
AuthenticationSchemeProvider(IOptions<AuthenticationOptions>) |
Crea un'istanza di AuthenticationSchemeProvider utilizzando il |
AuthenticationSchemeProvider(IOptions<AuthenticationOptions>, IDictionary<String,AuthenticationScheme>) |
Crea un'istanza di AuthenticationSchemeProvider utilizzando il |
AuthenticationSchemeProvider(IOptions<AuthenticationOptions>)
- Origine:
- AuthenticationSchemeProvider.cs
- Origine:
- AuthenticationSchemeProvider.cs
- Origine:
- AuthenticationSchemeProvider.cs
Crea un'istanza di AuthenticationSchemeProvider utilizzando il options
specificato.
public:
AuthenticationSchemeProvider(Microsoft::Extensions::Options::IOptions<Microsoft::AspNetCore::Authentication::AuthenticationOptions ^> ^ options);
public AuthenticationSchemeProvider (Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Authentication.AuthenticationOptions> options);
new Microsoft.AspNetCore.Authentication.AuthenticationSchemeProvider : Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Authentication.AuthenticationOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationSchemeProvider
Public Sub New (options As IOptions(Of AuthenticationOptions))
Parametri
- options
- IOptions<AuthenticationOptions>
Opzioni di AuthenticationOptions.
Si applica a
AuthenticationSchemeProvider(IOptions<AuthenticationOptions>, IDictionary<String,AuthenticationScheme>)
- Origine:
- AuthenticationSchemeProvider.cs
- Origine:
- AuthenticationSchemeProvider.cs
- Origine:
- AuthenticationSchemeProvider.cs
Crea un'istanza di AuthenticationSchemeProvider utilizzando il options
specificato e schemes
.
protected:
AuthenticationSchemeProvider(Microsoft::Extensions::Options::IOptions<Microsoft::AspNetCore::Authentication::AuthenticationOptions ^> ^ options, System::Collections::Generic::IDictionary<System::String ^, Microsoft::AspNetCore::Authentication::AuthenticationScheme ^> ^ schemes);
protected AuthenticationSchemeProvider (Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Authentication.AuthenticationOptions> options, System.Collections.Generic.IDictionary<string,Microsoft.AspNetCore.Authentication.AuthenticationScheme> schemes);
new Microsoft.AspNetCore.Authentication.AuthenticationSchemeProvider : Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Authentication.AuthenticationOptions> * System.Collections.Generic.IDictionary<string, Microsoft.AspNetCore.Authentication.AuthenticationScheme> -> Microsoft.AspNetCore.Authentication.AuthenticationSchemeProvider
Protected Sub New (options As IOptions(Of AuthenticationOptions), schemes As IDictionary(Of String, AuthenticationScheme))
Parametri
- options
- IOptions<AuthenticationOptions>
Opzioni di AuthenticationOptions.
- schemes
- IDictionary<String,AuthenticationScheme>
Dizionario usato per archiviare gli schemi di autenticazione.