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)
611
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)
246
NavigationManager.
NavigateTo
(DashboardUrls.TraceDetailUrl(TraceId), new NavigationOptions { ReplaceHistoryEntry = true });
Microsoft.AspNetCore.Components.Tests (9)
NavigationManagerTest.cs (9)
953
testNavManager.
NavigateTo
("sibling.html", new NavigationOptions { RelativeToCurrentUri = true });
967
testNavManager.
NavigateTo
("other.html", new NavigationOptions { RelativeToCurrentUri = true });
980
testNavManager.
NavigateTo
("relative.html", new NavigationOptions { RelativeToCurrentUri = false });
994
testNavManager.
NavigateTo
("other.html", new NavigationOptions { RelativeToCurrentUri = true });
1007
testNavManager.
NavigateTo
("sibling.html", new NavigationOptions { RelativeToCurrentUri = true });
1020
testNavManager.
NavigateTo
("other.html?new=param", new NavigationOptions { RelativeToCurrentUri = true });
1033
testNavManager.
NavigateTo
("sibling.html", new NavigationOptions { RelativeToCurrentUri = true });
1072
testNavManager.
NavigateTo
(relativeUri, new NavigationOptions { RelativeToCurrentUri = true });
1096
testNavManager.
NavigateTo
(absoluteUri, new NavigationOptions { RelativeToCurrentUri = true }));