Class InstrumentedStoreExtensions
The instrumented store extensions.
Inherited Members
Namespace: Unity.AppUI.Redux.DevTools
Assembly: Unity.AppUI.Redux.dll
Syntax
public static class InstrumentedStoreExtensions
Methods
AsInstrumentedStore<TState>(IStore<TState>)
Get the instrumented store from a store.
Declaration
public static IInstrumentedStore<TState> AsInstrumentedStore<TState>(this IStore<TState> store)
Parameters
Type | Name | Description |
---|---|---|
IStore<TState> | store | The store. |
Returns
Type | Description |
---|---|
IInstrumentedStore<TState> | The instrumented store. |
Type Parameters
Name | Description |
---|---|
TState | The type of the store state. |
Exceptions
Type | Condition |
---|---|
InvalidOperationException | Thrown if the store is not instrumented. |