5 references to ScopeKey
Microsoft.AspNetCore.Authentication.Google (1)
GoogleHandler.cs (1)
74SetQueryParam(queryStrings, properties, GoogleChallengeProperties.ScopeKey, FormatScope, Options.Scope);
Microsoft.AspNetCore.Authentication.MicrosoftAccount (1)
MicrosoftAccountHandler.cs (1)
71AddQueryString(queryStrings, properties, MicrosoftChallengeProperties.ScopeKey, FormatScope, Options.Scope);
Microsoft.AspNetCore.Authentication.OAuth (3)
OAuthChallengeProperties.cs (2)
43get => GetParameter<ICollection<string>>(ScopeKey)!; 44set => SetParameter(ScopeKey, value);
OAuthHandler.cs (1)
302var scopeParameter = properties.GetParameter<ICollection<string>>(OAuthChallengeProperties.ScopeKey);