Skip to main content

GetBindingObservable(AvaloniaObject, AvaloniaProperty) Method

Gets an observable for an AvaloniaProperty.

Definition

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

public static IObservable<BindingValue<Object>> GetBindingObservable(
this AvaloniaObject o,
AvaloniaProperty property
)

Parameters

  AvaloniaObject
The object.
  AvaloniaProperty
The property.

Return Value

IObservable(BindingValue(Object))
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