BindingExpressionPathExtensions
Adds observable intermediate objects to typed binding paths.
- Kind: Class
- Namespace: SkeleKit
Methods
Path
Continues a binding through an observable reference and observes the returned property.
| Parameter | Summary |
|---|---|
BindingExpression<TSource, TOwner, TMiddle> expression | The binding to continue. |
Func<TMiddle, TNext> next | Reads the next property from the current reference. |
(optional) string? path | The path lambda, captured automatically to derive its property name. |
| Type parameter | Summary |
|---|---|
(class) TSource | The root binding source type. |
(class?) TOwner | The object that owns the current value. |
(class?) TMiddle | The current reference type. |
TNext | The property type returned by the next path segment. |
Returns
BindingExpression<TSource, TMiddle, TNext>: A binding that observes the added path segment.