9 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);
Microsoft.AspNetCore.Authentication.Test (4)
FacebookTests.cs (1)
196properties.SetParameter(OAuthChallengeProperties.ScopeKey, new string[] { "baz", "qux" });
MicrosoftAccountTests.cs (1)
389properties.SetParameter(OAuthChallengeProperties.ScopeKey, new string[] { "baz", "qux" });
OAuthTests.cs (1)
267properties.SetParameter(OAuthChallengeProperties.ScopeKey, new string[] { "baz", "qux" });
OpenIdConnect\OpenIdConnectChallengeTests.cs (1)
619properties.SetParameter(OpenIdConnectChallengeProperties.ScopeKey, new string[] { "baz", "qux" });