Interface IDisposableSubscription
Represents a subscription to a store.
Inherited Members
Namespace: Unity.AppUI.Redux
Assembly: Unity.AppUI.Redux.dll
Syntax
public interface IDisposableSubscription : IDisposable
Methods
IsValid()
Whether the subscription is still valid. A Subscription is no longer valid when it has been unsubscribed or of the store it was subscribed to has been disposed.
Declaration
bool IsValid()
Returns
Type | Description |
---|---|
bool | True if the subscription is still valid, false otherwise. |