1 instantiation of AuthenticationSchemeBuilder
Microsoft.AspNetCore.Authentication.Abstractions (1)
AuthenticationOptions.cs (1)
42var builder = new AuthenticationSchemeBuilder(name);
8 references to AuthenticationSchemeBuilder
Microsoft.AspNetCore.Authentication.Abstractions (7)
AuthenticationOptions.cs (7)
15private readonly IList<AuthenticationSchemeBuilder> _schemes = new List<AuthenticationSchemeBuilder>(); 20public IEnumerable<AuthenticationSchemeBuilder> Schemes => _schemes; 25public IDictionary<string, AuthenticationSchemeBuilder> SchemeMap { get; } = new Dictionary<string, AuthenticationSchemeBuilder>(StringComparer.Ordinal); 32public void AddScheme(string name, Action<AuthenticationSchemeBuilder> configureBuilder) 42var builder = new AuthenticationSchemeBuilder(name);
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationSchemeProvider.cs (1)
38foreach (var builder in _options.Schemes)