IComponent.SetParametersAsync(ParameterView) 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.
Sets parameters supplied by the component's parent in the render tree.
public:
System::Threading::Tasks::Task ^ SetParametersAsync(Microsoft::AspNetCore::Components::ParameterView parameters);
public System.Threading.Tasks.Task SetParametersAsync (Microsoft.AspNetCore.Components.ParameterView parameters);
abstract member SetParametersAsync : Microsoft.AspNetCore.Components.ParameterView -> System.Threading.Tasks.Task
Public Function SetParametersAsync (parameters As ParameterView) As Task
Parameters
- parameters
- ParameterView
The parameters.
Returns
A Task that completes when the component has finished updating and rendering itself.
Remarks
The SetParametersAsync(ParameterView) method should be passed the entire set of parameter values each time SetParametersAsync(ParameterView) is called. It not required that the caller supply a parameter value for all parameters that are logically understood by the component.