Class ActionComponent<TProperties, TClientProperties>
Represents a base class for a action component to be loaded.
public abstract class ActionComponent<TProperties, TClientProperties> : IActionComponent where TProperties : IActionComponentProperties where TClientProperties : IActionComponentClientProperties, new()
Type Parameters
TProperties
TClientProperties
- Inheritance
-
objectActionComponent<TProperties, TClientProperties>
- Implements
- Derived
- Extension Methods
Properties
ClientComponentName
Name of the front-end type implementing the action component.
public abstract string ClientComponentName { get; }
Property Value
- string
Properties
Gets the server component properties.
public TProperties Properties { get; init; }
Property Value
- TProperties
Methods
ConfigureClientProperties(TClientProperties)
Configures the action component client properties.
protected virtual Task ConfigureClientProperties(TClientProperties clientProperties)
Parameters
clientProperties
TClientPropertiesThe current instance of the action component client properties.
Returns
- Task
Remarks
Override this method in order to configure action component client properties.
GetClientProperties()
Returns action component client properties defined by a component implementation.
public Task<IActionComponentClientProperties> GetClientProperties()