【发布时间】:2016-12-12 10:14:32
【问题描述】:
我在 C# 中创建了一个 Azure 函数,它在 JSON 响应中返回多个参数:
return req.CreateResponse(HttpStatusCode.OK, new {
empId= "e101", name = "John"
});
我能够在 Azure 逻辑应用中访问此函数,但我不知道如何访问返回的各个属性。
【问题讨论】:
标签: c# azure azure-functions azure-logic-apps