2 instantiations of QueryParameterSource
Microsoft.AspNetCore.Components (2)
NavigationManagerExtensions.cs (2)
691var source = new QueryParameterSource(name, value); 710var parameterSource = new QueryParameterSource(name, value);
6 references to QueryParameterSource
Microsoft.AspNetCore.Components (6)
NavigationManagerExtensions.cs (6)
580if (parameterSources.TryGetValue(pair.EncodedName, out var source)) 595foreach (var source in parameterSources.Values) 691var source = new QueryParameterSource(name, value); 703private static Dictionary<ReadOnlyMemory<char>, QueryParameterSource> CreateParameterSourceDictionary( 706var parameterSources = new Dictionary<ReadOnlyMemory<char>, QueryParameterSource>(QueryParameterNameComparer.Instance); 710var parameterSource = new QueryParameterSource(name, value);