Table of Contents

Interface IBindable<T>

Namespace
Bindables
Assembly
Bindables.dll

Read-only bindable interface that provides access to a typed value and change notifications.

public interface IBindable<out T> : IBindable

Type Parameters

T

The type of the bindable value.

Inherited Members
Extension Methods

Properties

Value

Gets the current value of the bindable.

T Value { get; }

Property Value

T

Events

OnChangeWithValue

Event triggered when the bindable value changes, providing the new value.

event Action<out T> OnChangeWithValue

Event Type

Action<T>