6 writes to Uri
Microsoft.AspNetCore.Components (1)
NavigationManager.cs (1)
238Uri = uri;
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteNavigationManager.cs (1)
91Uri = uri;
Microsoft.AspNetCore.Components.Tests (2)
RouteViewTest.cs (1)
173Uri = uri;
Routing\RouterTest.cs (1)
275Uri = uri;
Microsoft.AspNetCore.Components.WebAssembly (1)
Services\WebAssemblyNavigationManager.cs (1)
41Uri = uri;
Microsoft.AspNetCore.Components.WebView (1)
Services\WebViewNavigationManager.cs (1)
27Uri = newUrl;
42 references to Uri
Aspire.Dashboard (5)
Components\Controls\SummaryDetailsView.razor.cs (2)
325var viewKey = ViewKey ?? NavigationManager.ToBaseRelativePath(NavigationManager.Uri); 331var viewKey = ViewKey ?? NavigationManager.ToBaseRelativePath(NavigationManager.Uri);
Components\Dialogs\SettingsDialog.razor.cs (1)
82var uri = new Uri(NavigationManager.Uri)
Components\Layout\DesktopNavMenu.razor.cs (1)
45ProcessNavigationUri(NavigationManager.Uri);
Components\Pages\IPageWithSessionAndUrlState.cs (1)
95if (string.Equals(page.BasePath, page.NavigationManager.ToBaseRelativePath(page.NavigationManager.Uri)))
BasicTestApp (1)
Program.cs (1)
67uri = new Uri(host.Services.GetService<NavigationManager>().Uri);
Microsoft.AspNetCore.Components (32)
NavigationManager.cs (4)
93/// Gets or sets the current URI. The <see cref="Uri" /> is always represented as an absolute URI in string form. 96/// Setting <see cref="Uri" /> will not trigger the <see cref="LocationChanged" /> event. 199=> NavigateTo(Uri, forceLoad: true, replace: true); 506/// Sets whether navigation is currently locked. If it is, then implementations should not update <see cref="Uri"/> and call
NavigationManagerExtensions.cs (24)
272/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 282/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 296/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 306/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 320/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 330/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 344/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 354/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 368/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 378/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 392/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 402/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 416/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 426/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 440/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 450/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 464/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 474/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 488/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 498/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 512/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter 531var uri = navigationManager.Uri; 539/// Returns a URI constructed from <see cref="NavigationManager.Uri"/> with multiple parameters 547=> GetUriWithQueryParameters(navigationManager, navigationManager.Uri, parameters);
Routing\Router.cs (1)
116_locationAbsolute = NavigationManager.Uri;
Routing\SupplyParameterFromQueryValueProvider.cs (3)
71if (navigationManager.Uri == _lastUri) 76var query = GetQueryString(navigationManager.Uri); 84_lastUri = navigationManager.Uri;
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteNavigationManager.cs (1)
159var absoluteUriString = ToAbsoluteUri(Uri).AbsoluteUri;
Microsoft.AspNetCore.Components.Web (2)
HtmlRendering\StaticHtmlRenderer.HtmlWriting.cs (1)
374return new Uri(navigationManager.Uri, UriKind.Absolute).PathAndQuery;
Routing\NavLink.cs (1)
75_isActive = ShouldMatch(NavigationManager.Uri);
Microsoft.AspNetCore.Components.WebAssembly.Tests (1)
Hosting\WebAssemblyHostBuilderTest.cs (1)
150Assert.Equal("https://www.example.com/awesome-part-that-will-be-truncated-in-tests/cool", navigationManager.Uri);