Interface IReactiveBinding
Defines a reactive binding that connects a source and a target, ensuring the target reflects changes in the source.
Namespace: PoeShared.Bindings
Assembly: PoeShared.dll
Syntax
public interface IReactiveBinding : IDisposable, INotifyPropertyChanged
Properties
Name | Description |
---|---|
Error | Gets a string representing any error that occurs during the binding process. |
IsActive | Gets a value indicating whether the binding is currently active and functioning. |
SourceWatcher | Gets the source watcher that monitors changes in the source's value. |
TargetPropertyPath | Gets the property path of the target. This can be a nested path representing where the source's value will be applied. |
TargetWatcher | Gets the target watcher that receives and applies changes from the source. |
Extension Methods
NotifyPropertyChangedExtensions.GetPropertyName<TObject, T1>(TObject, Expression<Func<TObject, T1>>)