Sdílet prostřednictvím


AuthenticationSchemeProvider Konstruktory

Definice

Přetížení

AuthenticationSchemeProvider(IOptions<AuthenticationOptions>)

Vytvoří instanci AuthenticationSchemeProvider pomocí zadaného options.

AuthenticationSchemeProvider(IOptions<AuthenticationOptions>, IDictionary<String,AuthenticationScheme>)

Vytvoří instanci AuthenticationSchemeProvider pomocí zadaného options a schemes.

AuthenticationSchemeProvider(IOptions<AuthenticationOptions>)

Zdroj:
AuthenticationSchemeProvider.cs
Zdroj:
AuthenticationSchemeProvider.cs
Zdroj:
AuthenticationSchemeProvider.cs

Vytvoří instanci AuthenticationSchemeProvider pomocí zadaného 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))

Parametry

Platí pro

AuthenticationSchemeProvider(IOptions<AuthenticationOptions>, IDictionary<String,AuthenticationScheme>)

Zdroj:
AuthenticationSchemeProvider.cs
Zdroj:
AuthenticationSchemeProvider.cs
Zdroj:
AuthenticationSchemeProvider.cs

Vytvoří instanci AuthenticationSchemeProvider pomocí zadaného options a 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))

Parametry

schemes
IDictionary<String,AuthenticationScheme>

Slovník používaný k ukládání schémat ověřování.

Platí pro