Interface IReactiveProperty<T>
- Namespace
- ReactiveUI
- Assembly
- ReactiveUI.dll
Reactive Property.
public interface IReactiveProperty<T> : IObservable<T?>, ICancelable, IDisposable, INotifyDataErrorInfo, INotifyPropertyChanged
Type Parameters
T
The type of the property.
- Inherited Members
Properties
ObserveErrorChanged
Gets the observe error changed.
IObservable<IEnumerable?> ObserveErrorChanged { get; }
Property Value
- IObservable<IEnumerable>
The observe error changed.
ObserveHasErrors
Gets the observe has errors.
IObservable<bool> ObserveHasErrors { get; }
Property Value
- IObservable<bool>
The observe has errors.
Value
Gets or sets the value.
T? Value { get; set; }
Property Value
- T
The value.
Methods
Refresh()
Refreshes this instance.
void Refresh()
See Also
IObservable<T>
ICancelable