1 override of FormatScope
Microsoft.AspNetCore.Authentication.Facebook (1)
FacebookHandler.cs (1)
82protected override string FormatScope(IEnumerable<string> scopes)
5 references to FormatScope
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)
OAuthHandler.cs (3)
303var scope = scopeParameter != null ? FormatScope(scopeParameter) : FormatScope(); 351/// <remarks>Subclasses should rather override <see cref="FormatScope(IEnumerable{string})"/>.</remarks> 353=> FormatScope(Options.Scope);