ParameterView.FromDictionary(IDictionary<String,Object>) Method

Definition

Creates a new ParameterView from the given IDictionary<TKey,TValue>.

public:
 static Microsoft::AspNetCore::Components::ParameterView FromDictionary(System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ parameters);
public static Microsoft.AspNetCore.Components.ParameterView FromDictionary (System.Collections.Generic.IDictionary<string,object> parameters);
public static Microsoft.AspNetCore.Components.ParameterView FromDictionary (System.Collections.Generic.IDictionary<string,object?> parameters);
static member FromDictionary : System.Collections.Generic.IDictionary<string, obj> -> Microsoft.AspNetCore.Components.ParameterView
Public Shared Function FromDictionary (parameters As IDictionary(Of String, Object)) As ParameterView

Parameters

parameters
IDictionary<String,Object>

The IDictionary<TKey,TValue> with the parameters.

Returns

A ParameterView.

Applies to