7 writes to ReplaceHistoryEntry
Aspire.Dashboard (4)
Components\Pages\IPageWithSessionAndUrlState.cs (1)
116page.NavigationManager.NavigateTo(newUrl, new NavigationOptions { ReplaceHistoryEntry = true });
Components\Pages\Resources.razor.cs (1)
611NavigationManager.NavigateTo(DashboardUrls.ResourcesUrl(), new NavigationOptions { ReplaceHistoryEntry = true });
Components\Pages\StructuredLogs.razor.cs (1)
270NavigationManager.NavigateTo(DashboardUrls.StructuredLogsUrl(), new NavigationOptions { ReplaceHistoryEntry = true });
Components\Pages\TraceDetail.razor.cs (1)
246NavigationManager.NavigateTo(DashboardUrls.TraceDetailUrl(TraceId), new NavigationOptions { ReplaceHistoryEntry = true });
Microsoft.AspNetCore.Components (1)
NavigationManager.cs (1)
143ReplaceHistoryEntry = replace,
Microsoft.AspNetCore.Components.WebAssembly.Authentication (2)
RemoteAuthenticatorViewCore.cs (2)
24new() { ReplaceHistoryEntry = true, ForceLoad = false }; 413Navigation.NavigateTo(Navigation.ToAbsoluteUri(ApplicationPaths.RemoteProfilePath).AbsoluteUri, new NavigationOptions { ReplaceHistoryEntry = true, ForceLoad = true });
3 references to ReplaceHistoryEntry
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteNavigationManager.cs (1)
223=> RequestingNavigation(logger, uri, options.ForceLoad, options.ReplaceHistoryEntry);
Microsoft.AspNetCore.Components.Web (2)
_generated\3\WebRendererSerializerContext.NavigationOptions.g.cs (2)
80Getter = static obj => ((global::Microsoft.AspNetCore.Components.NavigationOptions)obj).ReplaceHistoryEntry, 143writer.WriteBoolean(PropName_ReplaceHistoryEntry, ((global::Microsoft.AspNetCore.Components.NavigationOptions)value).ReplaceHistoryEntry);