我看了一下这个问题,是由于「存储 SDK」升级(国内强制使用自有域名)导致的。
所以,目前最快的解决方案只能通过「降级」云引擎库解决,比如 2019.6.4.9 版本。(或者使用其他语言的云引擎 SDK)
旧版的 SDK 对云函数返回的 Task 类型有些问题,我们将会在本月推出新版 C# 云引擎 SDK。

我也更新了一下 云引擎 SDK2
但是旧版 SDK 不支持返回值为 Task 类型,所以代码要使用同步方式,需做如下改动

[EngineFunction("Hello")]
        public static string Hello([EngineFunctionParameter("text")]string text)
        {
            Console.WriteLine("call Hello function");
            try {
                AVQuery<AVObject> query = new AVQuery<AVObject>("Hello");
                Task<IEnumerable<AVObject>> task = query.FindAsync();
                task.Wait();
                foreach (AVObject obj in task.Result) {
                    Console.WriteLine(obj.ObjectId);
                }
            } catch (Exception e) {
                Console.WriteLine(e.Message);
            }
            return $"hello, {text}";
        }