NavigationManagerExtensions.GetUriWithQueryParameters Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetUriWithQueryParameters(NavigationManager, IReadOnlyDictionary<String,Object>) |
Returns a URI constructed from Uri with multiple parameters added, updated, or removed. |
GetUriWithQueryParameters(NavigationManager, String, IReadOnlyDictionary<String,Object>) |
Returns a URI constructed from |
GetUriWithQueryParameters(NavigationManager, IReadOnlyDictionary<String,Object>)
Returns a URI constructed from Uri with multiple parameters added, updated, or removed.
public static string GetUriWithQueryParameters (this Microsoft.AspNetCore.Components.NavigationManager navigationManager, System.Collections.Generic.IReadOnlyDictionary<string,object?> parameters);
static member GetUriWithQueryParameters : Microsoft.AspNetCore.Components.NavigationManager * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> string
<Extension()>
Public Function GetUriWithQueryParameters (navigationManager As NavigationManager, parameters As IReadOnlyDictionary(Of String, Object)) As String
Parameters
- navigationManager
- NavigationManager
The NavigationManager.
- parameters
- IReadOnlyDictionary<String,Object>
The values to add, update, or remove.
Returns
Applies to
GetUriWithQueryParameters(NavigationManager, String, IReadOnlyDictionary<String,Object>)
Returns a URI constructed from uri
except with multiple parameters
added, updated, or removed.
public static string GetUriWithQueryParameters (this Microsoft.AspNetCore.Components.NavigationManager navigationManager, string uri, System.Collections.Generic.IReadOnlyDictionary<string,object?> parameters);
static member GetUriWithQueryParameters : Microsoft.AspNetCore.Components.NavigationManager * string * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> string
<Extension()>
Public Function GetUriWithQueryParameters (navigationManager As NavigationManager, uri As String, parameters As IReadOnlyDictionary(Of String, Object)) As String
Parameters
- navigationManager
- NavigationManager
The NavigationManager.
- uri
- String
The URI with the query to modify.
- parameters
- IReadOnlyDictionary<String,Object>
The values to add, update, or remove.