AvaloniaObjectExtensionsGetObservableTResult(AvaloniaObject, AvaloniaProperty, FuncObject, TResult) Method

Gets an observable for an AvaloniaProperty.

Definition

Namespace: Avalonia
Assembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public static IObservable<TResult> GetObservable<TResult>(
	this AvaloniaObject o,
	AvaloniaProperty property,
	Func<Object?, TResult> converter
)

Parameters

o  AvaloniaObject
property  AvaloniaProperty
converter  FuncObject, TResult
A method which is executed to convert each property value to TResult.

Type Parameters

TResult
The type of the value returned by the converter.

Return Value

IObservableTResult
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