6 writes to Uri
Microsoft.AspNetCore.Components (1)
NavigationManager.cs (1)
238
Uri
= uri;
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteNavigationManager.cs (1)
91
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;
42 references to Uri
Aspire.Dashboard (5)
Components\Controls\SummaryDetailsView.razor.cs (2)
325
var viewKey = ViewKey ?? NavigationManager.ToBaseRelativePath(NavigationManager.
Uri
);
331
var viewKey = ViewKey ?? NavigationManager.ToBaseRelativePath(NavigationManager.
Uri
);
Components\Dialogs\SettingsDialog.razor.cs (1)
82
var uri = new Uri(NavigationManager.
Uri
)
Components\Layout\DesktopNavMenu.razor.cs (1)
45
ProcessNavigationUri(NavigationManager.
Uri
);
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 (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
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)
116
_locationAbsolute = NavigationManager.
Uri
;
Routing\SupplyParameterFromQueryValueProvider.cs (3)
71
if (navigationManager.
Uri
== _lastUri)
76
var query = GetQueryString(navigationManager.
Uri
);
84
_lastUri = navigationManager.
Uri
;
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteNavigationManager.cs (1)
159
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)
75
_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
);