15 references to ApplicationPaths
Microsoft.AspNetCore.Components.WebAssembly.Authentication (15)
RemoteAuthenticatorViewCore.cs (15)
171if (ApplicationPaths.RemoteProfilePath == null)
182if (ApplicationPaths.RemoteRegisterPath == null)
193await ProcessLogOut(GetReturnUrl(state: null, ApplicationPaths.LogOutSucceededPath));
235Log.NavigatingToUrl(Logger, ApplicationPaths.LogInFailedPath);
236Navigation.NavigateTo(ApplicationPaths.LogInFailedPath, AuthenticationNavigationOptions with { HistoryEntryState = result.ErrorMessage });
269Log.NavigatingToUrl(Logger, ApplicationPaths.LogInFailedPath);
271ApplicationPaths.LogInFailedPath,
284Navigation.NavigateTo(ApplicationPaths.LogOutFailedPath, AuthenticationNavigationOptions with { HistoryEntryState = "The logout was not initiated from within the page." });
319Log.NavigatingToUrl(Logger, ApplicationPaths.LogOutFailedPath);
320Navigation.NavigateTo(ApplicationPaths.LogOutFailedPath, AuthenticationNavigationOptions with { HistoryEntryState = result.ErrorMessage });
349var redirectUrl = GetReturnUrl(result.State, ApplicationPaths.LogOutSucceededPath);
357Navigation.NavigateTo(ApplicationPaths.LogOutFailedPath, AuthenticationNavigationOptions with { HistoryEntryState = result.ErrorMessage });
400var loginUrl = Navigation.ToAbsoluteUri(ApplicationPaths.LogInPath).PathAndQuery;
401var registerUrl = Navigation.ToAbsoluteUri(ApplicationPaths.RemoteRegisterPath).AbsoluteUri;
413Navigation.NavigateTo(Navigation.ToAbsoluteUri(ApplicationPaths.RemoteProfilePath).AbsoluteUri, new NavigationOptions { ReplaceHistoryEntry = true, ForceLoad = true });