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