10 references to Scope
Aspire.Dashboard (4)
DashboardWebApplication.cs (4)
810if (!options.Scope.Contains(OpenIdConnectScope.OpenId)) 812options.Scope.Add(OpenIdConnectScope.OpenId); 815if (!options.Scope.Contains("profile")) 817options.Scope.Add("profile");
Keycloak.Web (1)
Program.cs (1)
37options.Scope.Add("weather:all");
Microsoft.AspNetCore.Authentication.OpenIdConnect (5)
OpenIdConnectConfigureOptions.cs (2)
75ClearAndSetListOption(options.Scope, configSection.GetSection(nameof(options.Scope)));
OpenIdConnectHandler.cs (1)
412Scope = string.Join(" ", properties.GetParameter<ICollection<string>>(OpenIdConnectParameterNames.Scope) ?? Options.Scope),
OpenIdConnectOptions.cs (2)
53Scope.Add("openid"); 54Scope.Add("profile");