Table of Contents

Interface IBindableHashSet<T>

Namespace
Bindables
Assembly
Bindables.dll

Represents a bindable hash set that notifies observers when the set or its elements change.

public interface IBindableHashSet<T> : IBindable<HashSet<T>>, IBindable, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable

Type Parameters

T

The type of elements in the set.

Inherited Members
Extension Methods

Properties

BindableCount

Gets a bindable property for the count of elements in the set.

IBindable<int> BindableCount { get; }

Property Value

IBindable<int>

Events

OnElementAdd

Occurs when an element is added to the set.

event Action<T> OnElementAdd

Event Type

Action<T>

OnElementRemove

Occurs when an element is removed from the set.

event Action<T> OnElementRemove

Event Type

Action<T>