Class StoreAction<TState, TInput>
Performs an action that can be triggered by the store
Inheritance
System.Object
StoreAction<TState, TInput>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: BlazorFocused
Assembly: BlazorFocused.Store.dll
Syntax
public abstract class StoreAction<TState, TInput> : IAction<TState, TInput>, IStoreAction<TState>
Type Parameters
| Name | Description |
|---|---|
| TState | State of the store data |
| TInput | Input object at time of execution |
Properties
| Improve this Doc View SourceState
Declaration
public TState State { get; set; }
Property Value
| Type | Description |
|---|---|
| TState |
Methods
| Improve this Doc View SourceExecute(TInput)
Declaration
public abstract TState Execute(TInput input)
Parameters
| Type | Name | Description |
|---|---|---|
| TInput | input |
Returns
| Type | Description |
|---|---|
| TState |