Table of Contents

Enum BindingValueType

Namespace
Avalonia.Data
Assembly
Avalonia.Base.dll

Describes the type of a BindingValue<T>.

[Flags]
public enum BindingValueType

Fields

BindingError = 515

A binding error, such as a missing source property.

BindingErrorWithFallback = HasValue | BindingError

A binding error with a fallback value.

DataValidationError = 516

A data validation error.

DataValidationErrorWithFallback = HasValue | DataValidationError

A data validation error with a fallback value.

DoNothing = 1

Do nothing: the binding value will be ignored.

HasError = 512
HasValue = 256
TypeMask = 255
UnsetValue = 0

An unset value: the target property will revert to its unbound state until a new binding value is produced.

Value = 258

A simple value.