Skip to main content

GetBindingObservable<TSource, TResult>(AvaloniaObject, AvaloniaProperty<TSource>, Func<TSource, TResult>) Method

Gets an observable for an AvaloniaProperty.

Definition

Namespace: Avalonia
Assembly: Avalonia.Base (in Avalonia.Base.dll)

public static IObservable<BindingValue<TResult>> GetBindingObservable<TSource, TResult>(
this AvaloniaObject o,
AvaloniaProperty<TSource> property,
Func<TSource, TResult> converter
)

Parameters

  AvaloniaObject
  AvaloniaProperty(TSource)
  Func(TSource, TResult)
A method which is executed to convert each property value to TResult.

Type Parameters

Return Value

IObservable(BindingValue(TResult))
An observable which fires immediately with the current value of the property on the object and subsequently each time the property value changes.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type AvaloniaObject. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

The subscription to o is created using a weak reference.

See Also

Reference

AvaloniaObjectExtensions Class
GetBindingObservable Overload
Avalonia Namespace