9 references to Scope
Microsoft.AspNetCore.Authentication.Facebook (1)
FacebookOptions.cs (1)
26
Scope
.Add("email");
Microsoft.AspNetCore.Authentication.Google (4)
GoogleHandler.cs (1)
74
SetQueryParam(queryStrings, properties, GoogleChallengeProperties.ScopeKey, FormatScope, Options.
Scope
);
GoogleOptions.cs (3)
25
Scope
.Add("openid");
26
Scope
.Add("profile");
27
Scope
.Add("email");
Microsoft.AspNetCore.Authentication.MicrosoftAccount (2)
MicrosoftAccountHandler.cs (1)
71
AddQueryString(queryStrings, properties, MicrosoftChallengeProperties.ScopeKey, FormatScope, Options.
Scope
);
MicrosoftAccountOptions.cs (1)
25
Scope
.Add("https://graph.microsoft.com/user.read");
Microsoft.AspNetCore.Authentication.OAuth (2)
OAuthHandler.cs (2)
348
/// Format the <see cref="OAuthOptions.
Scope
"/> property.
353
=> FormatScope(Options.
Scope
);