1 write to BaseUri
Microsoft.AspNetCore.Components (1)
NavigationManager.cs (1)
294
BaseUri
= baseUri;
13 references to BaseUri
Aspire.Dashboard (1)
Components\Layout\MainLayout.razor.cs (1)
103
if (TargetLocationInterceptor.InterceptTargetLocation(NavigationManager.
BaseUri
, context.TargetLocation, out var newTargetLocation))
Microsoft.AspNetCore.Components (9)
NavigationManager.cs (8)
66
/// Gets or sets the current base URI. The <see cref="
BaseUri
" /> is always represented as an absolute URI in string form with trailing slash.
70
/// Setting <see cref="
BaseUri
" /> will not trigger the <see cref="LocationChanged" /> event.
122
/// (as returned by <see cref="
BaseUri
"/>).</param>
131
/// (as returned by <see cref="
BaseUri
"/>).</param>
158
/// (as returned by <see cref="
BaseUri
"/>).</param>
229
/// (as returned by <see cref="
BaseUri
"/>).</param>
242
/// (as returned by <see cref="
BaseUri
"/>).</param>
319
/// Given a base URI (e.g., one previously returned by <see cref="
BaseUri
"/>),
Routing\Router.cs (1)
108
_baseUri = NavigationManager.
BaseUri
;
Microsoft.AspNetCore.Components.Endpoints (1)
Routing\BasePath.cs (1)
38
var baseUri = NavigationManager.
BaseUri
;
MyFrontend (2)
Components\NavigationManagerExtensions.cs (2)
9
if (uri.StartsWith(navigationManager.
BaseUri
, StringComparison.Ordinal))
16
var message = $"The URI '{uri}' is not contained by the base URI '{navigationManager.
BaseUri
}'.";