我需要等待属性setter方法的异步函数.
public String testFunc() { get { } set { //Await Call to the async func } }
我知道我们不应该制作异步属性,所以最佳方法是什么.
你不能让异步性,你不应该要来-性暗示快,非阻塞操作.如果您需要执行长时间运行的活动,正如您想要执行异步操作并等待它所暗示的那样,请不要将其作为属性.
删除setter并改为创建方法.