次の方法で共有


AuthenticationSchemeProvider コンストラクター

定義

オーバーロード

AuthenticationSchemeProvider(IOptions<AuthenticationOptions>)

指定した を使用して の AuthenticationSchemeProvider インスタンスを作成します options

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

指定した と schemesを使用して のAuthenticationSchemeProviderインスタンスを作成しますoptions

AuthenticationSchemeProvider(IOptions<AuthenticationOptions>)

ソース:
AuthenticationSchemeProvider.cs
ソース:
AuthenticationSchemeProvider.cs

指定した を使用して の AuthenticationSchemeProvider インスタンスを作成します 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))

パラメーター

適用対象

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

ソース:
AuthenticationSchemeProvider.cs
ソース:
AuthenticationSchemeProvider.cs

指定した と schemesを使用して のAuthenticationSchemeProviderインスタンスを作成しますoptions

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))

パラメーター

schemes
IDictionary<String,AuthenticationScheme>

認証スキームの格納に使用されるディクショナリ。

適用対象