Table of Contents

Interface ICollectionVariableElements

Namespace
LfrlAnvil.Reactive.State
Assembly
LfrlAnvil.Reactive.State.dll

Represents a type-erased collection of elements that belong to an IReadOnlyCollectionVariable.

public interface ICollectionVariableElements : IEnumerable
Inherited Members

Properties

Count

Number of elements in this collection.

int Count { get; }

Property Value

int

InvalidElementKeys

Collection of keys of invalid elements.

IEnumerable InvalidElementKeys { get; }

Property Value

IEnumerable

Keys

Underlying collection of element keys.

IEnumerable Keys { get; }

Property Value

IEnumerable

ModifiedElementKeys

Collection of keys of changed elements.

IEnumerable ModifiedElementKeys { get; }

Property Value

IEnumerable

Values

Underlying collection of elements.

IEnumerable Values { get; }

Property Value

IEnumerable

WarningElementKeys

Collection of keys of elements with warnings.

IEnumerable WarningElementKeys { get; }

Property Value

IEnumerable