[RelayCommand] Not woking when method name end with 'Async' #459
Answered
by
Sergio0694
JaehwanMango
asked this question in
Q&A
-
Hi, I have Question Example
exampleAsync() is not work when click the button If method(Command) name end with 'Async' |
Beta Was this translation helpful? Give feedback.
Answered by
Sergio0694
Sep 30, 2022
Replies: 1 comment 1 reply
-
You're binding to the wrong thing. If your method is named |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Sergio0694
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You're binding to the wrong thing. If your method is named
FooAsync
, the command name will beFooCommand
, and you need to bind to that. See the docs here 🙂