We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dcc41d commit a67f314Copy full SHA for a67f314
src/Components/src/Microsoft.AspNetCore.Components/ParameterCollection.cs
@@ -203,7 +203,7 @@ internal void CaptureSnapshot(ArrayBuilder<RenderTreeFrame> builder)
203
/// </summary>
204
/// <param name="parameters">The <see cref="IDictionary{TKey, TValue}"/> with the parameters.</param>
205
/// <returns>A <see cref="ParameterCollection"/>.</returns>
206
- public static ParameterCollection FromDictionary(Dictionary<string, object> parameters)
+ public static ParameterCollection FromDictionary(IDictionary<string, object> parameters)
207
{
208
var frames = new RenderTreeFrame[parameters.Count + 1];
209
frames[0] = RenderTreeFrame.Element(0, GeneratedParameterCollectionElementName)
0 commit comments