AuthenticationSchemeProvider Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
AuthenticationSchemeProvider(IOptions<AuthenticationOptions>) |
Erstellt eine Instanz von AuthenticationSchemeProvider mithilfe der angegebenen |
AuthenticationSchemeProvider(IOptions<AuthenticationOptions>, IDictionary<String,AuthenticationScheme>) |
Erstellt eine Instanz von AuthenticationSchemeProvider mithilfe der angegebenen |
AuthenticationSchemeProvider(IOptions<AuthenticationOptions>)
Erstellt eine Instanz von AuthenticationSchemeProvider mithilfe der angegebenen options
.
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))
Parameter
- options
- IOptions<AuthenticationOptions>
Die AuthenticationOptions Optionen.
Gilt für:
AuthenticationSchemeProvider(IOptions<AuthenticationOptions>, IDictionary<String,AuthenticationScheme>)
Erstellt eine Instanz von AuthenticationSchemeProvider mithilfe der angegebenen options
und 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))
Parameter
- options
- IOptions<AuthenticationOptions>
Die AuthenticationOptions Optionen.
- schemes
- IDictionary<String,AuthenticationScheme>
Das Wörterbuch, das zum Speichern von Authentifizierungsschemas verwendet wird.