BlazorTextEditorSetParametersAsync Method

Parameters are loaded manually for sake of performance; if we were to use System.Reflection magic, it would hurt performance if components were used in large numbers.

Definition

Namespace: MobileTrack.Web.Portal.Components.QuillEditor
Assembly: MobileTrack.Web.Portal (in MobileTrack.Web.Portal.exe) Version: 0.8+821604ea552bde242964120acb39b21c90d2b4af
public override Task SetParametersAsync(
	ParameterView parameters
)

Parameters

parameters  ParameterView
The parameters send by the parent (ParameterAttribute) or ancestor (CascadingParameterAttribute) components.

Return Value

Task
Task completion.

Implements

IComponentSetParametersAsync(ParameterView)

Exceptions

InvalidOperationExceptionThrown if any of the required properties are not set: EditorContent,ToolbarContent,Placeholder
InvalidOperationExceptionThrown if an attempt is made to set property values that are not part of this component.

See Also