1 write to CallbackPath
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
821
options.
CallbackPath
= TargetLocationInterceptor.ResourcesPath;
11 references to CallbackPath
Microsoft.AspNetCore.Authentication (6)
RemoteAuthenticationHandler.cs (1)
69
=> Task.FromResult(Options.
CallbackPath
== Request.Path);
RemoteAuthenticationOptions.cs (5)
53
if (
CallbackPath
== null || !
CallbackPath
.HasValue)
55
throw new ArgumentException(Resources.FormatException_OptionMustBeProvided(nameof(
CallbackPath
)), nameof(
CallbackPath
));
167
protected override string AdditionalPath => _options.
CallbackPath
;
Microsoft.AspNetCore.Authentication.OAuth (5)
OAuthHandler.cs (2)
133
var codeExchangeContext = new OAuthCodeExchangeContext(properties, code.ToString(), BuildRedirectUri(Options.
CallbackPath
));
273
var authorizationEndpoint = BuildChallengeUrl(properties, BuildRedirectUri(Options.
CallbackPath
));
OAuthOptions.cs (3)
34
if (!
CallbackPath
.HasValue)
36
throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Resources.Exception_OptionMustBeProvided, nameof(
CallbackPath
)), nameof(
CallbackPath
));