IAuthenticationSchemeProvider.GetDefaultAuthenticateSchemeAsync Method

Definition

Returns the scheme that will be used by default for AuthenticateAsync(HttpContext, String). This is typically specified via DefaultAuthenticateScheme. Otherwise, this will fallback to DefaultScheme.

public:
 System::Threading::Tasks::Task<Microsoft::AspNetCore::Authentication::AuthenticationScheme ^> ^ GetDefaultAuthenticateSchemeAsync();
public System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationScheme> GetDefaultAuthenticateSchemeAsync ();
public System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationScheme?> GetDefaultAuthenticateSchemeAsync ();
abstract member GetDefaultAuthenticateSchemeAsync : unit -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationScheme>
Public Function GetDefaultAuthenticateSchemeAsync () As Task(Of AuthenticationScheme)

Returns

The scheme that will be used by default for AuthenticateAsync(HttpContext, String).

Applies to