【发布时间】:2015-01-11 11:45:10
【问题描述】:
我的 Azure 移动服务中有一些无法解释的数据。
有一个方法每 30 秒调用一次,返回 HTTP 状态 200。
public class InboxController : ApiController
{
public async Task<IHttpActionResult> Set(Container container)
{
// Magic happens ... (SQL Inserts and Notifications)
return new StatusCodeResult(HttpStatusCode.OK, this);
}
}
SQL 数据库和通知中心位于同一个 Azure 区域。
28.8 MB 数据输出
这些数据来自哪里?
【问题讨论】:
标签: c# azure azure-mobile-services