6 writes to Uri
Microsoft.AspNetCore.Components (1)
NavigationManager.cs (1)
199
Uri
= uri;
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteNavigationManager.cs (1)
72
Uri
= uri;
Microsoft.AspNetCore.Components.Tests (2)
RouteViewTest.cs (1)
173
Uri
= uri;
Routing\RouterTest.cs (1)
275
Uri
= uri;
Microsoft.AspNetCore.Components.WebAssembly (1)
Services\WebAssemblyNavigationManager.cs (1)
41
Uri
= uri;
Microsoft.AspNetCore.Components.WebView (1)
Services\WebViewNavigationManager.cs (1)
27
Uri
= newUrl;
35 references to Uri
Aspire.Dashboard (1)
Components\Pages\IPageWithSessionAndUrlState.cs (1)
95
if (string.Equals(page.BasePath, page.NavigationManager.ToBaseRelativePath(page.NavigationManager.
Uri
)))
BasicTestApp (1)
Program.cs (1)
67
uri = new Uri(host.Services.GetService<NavigationManager>().
Uri
);
Microsoft.AspNetCore.Components (29)
NavigationManager.cs (4)
72
/// Gets or sets the current URI. The <see cref="
Uri
" /> is always represented as an absolute URI in string form.
75
/// Setting <see cref="
Uri
" /> will not trigger the <see cref="LocationChanged" /> event.
178
=> NavigateTo(
Uri
, forceLoad: true, replace: true);
467
/// 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
531
var 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)
106
_locationAbsolute = NavigationManager.
Uri
;
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteNavigationManager.cs (1)
131
var absoluteUriString = ToAbsoluteUri(
Uri
).AbsoluteUri;
Microsoft.AspNetCore.Components.Web (2)
HtmlRendering\StaticHtmlRenderer.HtmlWriting.cs (1)
374
return new Uri(navigationManager.
Uri
, UriKind.Absolute).PathAndQuery;
Routing\NavLink.cs (1)
73
_isActive = ShouldMatch(NavigationManager.
Uri
);
Microsoft.AspNetCore.Components.WebAssembly.Tests (1)
Hosting\WebAssemblyHostBuilderTest.cs (1)
150
Assert.Equal("https://www.example.com/awesome-part-that-will-be-truncated-in-tests/cool", navigationManager.
Uri
);