11 types derived from NavigationManager
Microsoft.AspNetCore.Components.Authorization.Tests (1)
Microsoft.AspNetCore.Components.Endpoints (1)
Microsoft.AspNetCore.Components.Endpoints.Tests (1)
Microsoft.AspNetCore.Components.Server (1)
Microsoft.AspNetCore.Components.Tests (4)
Microsoft.AspNetCore.Components.Web.Tests (1)
Microsoft.AspNetCore.Components.WebAssembly (1)
Microsoft.AspNetCore.Components.WebView (1)
146 references to NavigationManager
Aspire.Dashboard (23)
Aspire.Dashboard.Components.Tests (10)
BasicTestApp (1)
Microsoft.AspNetCore.Components (79)
NavigationManagerExtensions.cs (69)
14/// Provides extension methods for the <see cref="NavigationManager"/> type.
272/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
275/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
278public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, bool value)
282/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
285/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
292public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, bool? value)
296/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
299/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
302public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, DateTime value)
306/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
309/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
316public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, DateTime? value)
320/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
323/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
326public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, DateOnly value)
330/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
333/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
340public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, DateOnly? value)
344/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
347/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
350public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, TimeOnly value)
354/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
357/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
364public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, TimeOnly? value)
368/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
371/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
374public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, decimal value)
378/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
381/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
388public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, decimal? value)
392/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
395/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
398public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, double value)
402/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
405/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
412public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, double? value)
416/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
419/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
422public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, float value)
426/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
429/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
436public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, float? value)
440/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
443/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
446public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, Guid value)
450/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
453/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
460public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, Guid? value)
464/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
467/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
470public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, int value)
474/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
477/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
484public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, int? value)
488/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
491/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
494public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, long value)
498/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
501/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
508public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, long? value)
512/// Returns a URI that is constructed by updating <see cref="NavigationManager.Uri"/> with a single parameter
515/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
522public static string GetUriWithQueryParameter(this NavigationManager navigationManager, string name, string? value)
539/// Returns a URI constructed from <see cref="NavigationManager.Uri"/> with multiple parameters
542/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
545this NavigationManager navigationManager,
553/// <param name="navigationManager">The <see cref="NavigationManager"/>.</param>
557this NavigationManager navigationManager,
Microsoft.AspNetCore.Components.Authorization.Tests (1)
Microsoft.AspNetCore.Components.Endpoints (2)
Microsoft.AspNetCore.Components.Endpoints.Tests (3)
Microsoft.AspNetCore.Components.Server (4)
Microsoft.AspNetCore.Components.Tests (3)
Microsoft.AspNetCore.Components.Web (5)
Microsoft.AspNetCore.Components.Web.Tests (4)
Microsoft.AspNetCore.Components.WebAssembly (2)
Microsoft.AspNetCore.Components.WebAssembly.Tests (3)
Microsoft.AspNetCore.Components.WebView (2)
Microsoft.AspNetCore.Mvc.TagHelpers.Test (1)
Microsoft.Authentication.WebAssembly.Msal (2)
MyFrontend (1)