BindingExpression.

BindingExpression(ExpressionObserver, Type, object, object, IValueConverter, object, BindingPriority) Constructor

Summary

Initializes a new instance of the ExpressionObserver class.
Namespace
Avalonia.Data.Core
Containing Type
BindingExpression

Syntax

public BindingExpression(ExpressionObserver inner, Type targetType, object fallbackValue, object targetNullValue, IValueConverter converter, object converterParameter = null, BindingPriority priority = LocalValue)

Parameters

Name Type Description
inner ExpressionObserver The ExpressionObserver.
targetType Type The type to convert the value to.
fallbackValue object The value to use when the binding is unable to produce a value.
targetNullValue object The value to use when the binding result is null.
converter IValueConverter The value converter to use.
converterParameter object A parameter to pass to converter.
priority BindingPriority The binding priority.

Return Value

Type Description
void