13 references to NavigateTo
Aspire.Dashboard (4)
Components\Pages\IPageWithSessionAndUrlState.cs (1)
116
page.NavigationManager.
NavigateTo
(newUrl, new NavigationOptions { ReplaceHistoryEntry = true });
Components\Pages\Resources.razor.cs (1)
607
NavigationManager.
NavigateTo
(DashboardUrls.ResourcesUrl(), new NavigationOptions { ReplaceHistoryEntry = true });
Components\Pages\StructuredLogs.razor.cs (1)
270
NavigationManager.
NavigateTo
(DashboardUrls.StructuredLogsUrl(), new NavigationOptions { ReplaceHistoryEntry = true });
Components\Pages\TraceDetail.razor.cs (1)
262
NavigationManager.
NavigateTo
(DashboardUrls.TraceDetailUrl(TraceId), new NavigationOptions { ReplaceHistoryEntry = true });
Microsoft.AspNetCore.Components.Tests (9)
NavigationManagerTest.cs (9)
897
testNavManager.
NavigateTo
("sibling.html", new NavigationOptions { RelativeToCurrentUri = true });
911
testNavManager.
NavigateTo
("other.html", new NavigationOptions { RelativeToCurrentUri = true });
924
testNavManager.
NavigateTo
("relative.html", new NavigationOptions { RelativeToCurrentUri = false });
938
testNavManager.
NavigateTo
("other.html", new NavigationOptions { RelativeToCurrentUri = true });
951
testNavManager.
NavigateTo
("sibling.html", new NavigationOptions { RelativeToCurrentUri = true });
964
testNavManager.
NavigateTo
("other.html?new=param", new NavigationOptions { RelativeToCurrentUri = true });
977
testNavManager.
NavigateTo
("sibling.html", new NavigationOptions { RelativeToCurrentUri = true });
1016
testNavManager.
NavigateTo
(relativeUri, new NavigationOptions { RelativeToCurrentUri = true });
1040
testNavManager.
NavigateTo
(absoluteUri, new NavigationOptions { RelativeToCurrentUri = true }));