-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implemented MultiBindingExpression
#16219
Conversation
- Swap `target` and `targetProperty` order to make it consistent with other similar methods - Make `targetProperty` nullable as it will need to be null for `MultiBinding`
It will need to be null for `MultiBinding`.
It will need to be null for `MultiBinding`.
Only publish unset value if we've already published a value.
You can test this PR using the following package version. |
You can test this PR using the following package version. |
You can test this PR using the following package version. |
Prevents test passing when it shouldn't. See #16219 (comment)
You can test this PR using the following package version. |
What does the pull request do?
Implements
MultiBindingExpression
and makesMultiBinding
use it instead of relying on the now-obsolete APIs it was using before.Shouldn't have much user-facing effect, though does allow us to fix #16084
Also removes a couple of usages of the obsolete
IBinding.Initiate
API from multi-binding tests and adds nullable annotations to that file.Fixed issues
Fixes #16084