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