9 references to ScopeKey
Microsoft.AspNetCore.Authentication.Google (1)
GoogleHandler.cs (1)
74
SetQueryParam(queryStrings, properties, GoogleChallengeProperties.
ScopeKey
, FormatScope, Options.Scope);
Microsoft.AspNetCore.Authentication.MicrosoftAccount (1)
MicrosoftAccountHandler.cs (1)
71
AddQueryString(queryStrings, properties, MicrosoftChallengeProperties.
ScopeKey
, FormatScope, Options.Scope);
Microsoft.AspNetCore.Authentication.OAuth (3)
OAuthChallengeProperties.cs (2)
43
get => GetParameter<ICollection<string>>(
ScopeKey
)!;
44
set => SetParameter(
ScopeKey
, value);
OAuthHandler.cs (1)
302
var scopeParameter = properties.GetParameter<ICollection<string>>(OAuthChallengeProperties.
ScopeKey
);
Microsoft.AspNetCore.Authentication.Test (4)
FacebookTests.cs (1)
196
properties.SetParameter(OAuthChallengeProperties.
ScopeKey
, new string[] { "baz", "qux" });
MicrosoftAccountTests.cs (1)
389
properties.SetParameter(OAuthChallengeProperties.
ScopeKey
, new string[] { "baz", "qux" });
OAuthTests.cs (1)
267
properties.SetParameter(OAuthChallengeProperties.
ScopeKey
, new string[] { "baz", "qux" });
OpenIdConnect\OpenIdConnectChallengeTests.cs (1)
619
properties.SetParameter(OpenIdConnectChallengeProperties.
ScopeKey
, new string[] { "baz", "qux" });