In my setter method of a property which bounds to UI, I need to call an async method.
public string Property
{
set {
_property = value;
AMethodAsync();
}
}
But I am getting a compiler warning saying 'execution of this call method continues before the call is complete'.
How can I fix this compiler warning?
I read this thread, How to call an async method from a getter or setter? but the Dispatcher is not available on Windows phone.
Thank you.