Interface IPartionableState
Interface to implement a store state that can be sliced.
Namespace: Unity.AppUI.Redux
Assembly: Unity.AppUI.Redux.dll
Syntax
public interface IPartionableState
Methods
Get<TSliceState>(string)
Implementation of the method to get the slice state from the store state.
Declaration
TSliceState Get<TSliceState>(string sliceName)
Parameters
Type | Name | Description |
---|---|---|
string | sliceName | The name of the slice. |
Returns
Type | Description |
---|---|
TSliceState | The slice state. |
Type Parameters
Name | Description |
---|---|
TSliceState | The type of the slice state. |