1 implementation of GetAllSchemesAsync
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationSchemeProvider.cs (1)
207public virtual Task<IEnumerable<AuthenticationScheme>> GetAllSchemesAsync()
4 references to GetAllSchemesAsync
Microsoft.AspNetCore.Authentication.Core (3)
AuthenticationService.cs (3)
220var schemes = string.Join(", ", (await Schemes.GetAllSchemesAsync()).Select(sch => sch.Name)); 236return string.Join(", ", (await Schemes.GetAllSchemesAsync()) 276return string.Join(", ", (await Schemes.GetAllSchemesAsync())
Microsoft.AspNetCore.Identity (1)
SignInManager.cs (1)
1080var schemes = await _schemes.GetAllSchemesAsync();