Implemented interface member:
method
SetParametersAsync
Microsoft.AspNetCore.Components.IComponent.SetParametersAsync(Microsoft.AspNetCore.Components.ParameterView)
2 overrides of SetParametersAsync
Microsoft.AspNetCore.Components (1)
LayoutComponentBase.cs (1)
29public override Task SetParametersAsync(ParameterView parameters) => base.SetParametersAsync(parameters);
Microsoft.AspNetCore.Components.Web (1)
Forms\InputBase.cs (1)
224public override Task SetParametersAsync(ParameterView parameters)
4 references to SetParametersAsync
Microsoft.AspNetCore.Components (3)
ComponentBase.cs (2)
244/// Parameters are passed when <see cref="SetParametersAsync(ParameterView)"/> is called. It is not required that 248/// The default implementation of <see cref="SetParametersAsync(ParameterView)"/> will set the value of each property
LayoutComponentBase.cs (1)
29public override Task SetParametersAsync(ParameterView parameters) => base.SetParametersAsync(parameters);
Microsoft.AspNetCore.Components.Web (1)
Forms\InputBase.cs (1)
270return base.SetParametersAsync(ParameterView.Empty);