9 references to Scope
Microsoft.AspNetCore.Authentication.Facebook (1)
FacebookOptions.cs (1)
26Scope.Add("email");
Microsoft.AspNetCore.Authentication.Google (4)
GoogleHandler.cs (1)
74SetQueryParam(queryStrings, properties, GoogleChallengeProperties.ScopeKey, FormatScope, Options.Scope);
GoogleOptions.cs (3)
25Scope.Add("openid"); 26Scope.Add("profile"); 27Scope.Add("email");
Microsoft.AspNetCore.Authentication.MicrosoftAccount (2)
MicrosoftAccountHandler.cs (1)
71AddQueryString(queryStrings, properties, MicrosoftChallengeProperties.ScopeKey, FormatScope, Options.Scope);
MicrosoftAccountOptions.cs (1)
25Scope.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);