Azure 移动服务上的自定义帮助页面?
Custom Help Page on Azure Mobile Services?
我正在尝试为我的 Azure 移动服务制作一个干净漂亮的文档,尽管自动生成的帮助页面不包括
///评论信息
我尝试从 Nu-get 导入帮助页面包,但是当我部署时它们似乎不起作用。
Google 搜索失败。
有没有 link Azure 移动服务自定义帮助页面教程?
或者
有人实现了在自动生成的帮助页面上显示 /// 评论吗?
创建 Azure 移动服务并将其部署到服务器或 运行 在本地主机中时,我们可以看到 API 文档如下
和
这是本文推导的
但是如果你对每个服务评论如下
// GET tables/Customer
/// <summary>
/// Gets all customer dto.
/// </summary>
/// <returns>IQueryable<CustomerDto>.</returns>
public IQueryable<CustomerDto> GetAllCustomerDto()
{
try
{
return Query();
}
catch (DbEntityValidationException entityValidationException)
{
Debug.WriteLine(entityValidationException.GetDetails());
throw;
}
}
这些评论未加载到 API 文档中。我在这里看到的唯一一件事是生成带有注释的 xml 文件(就像我们做的 to create APIs documentations like MSDN)并将其加载到生成 API 文档的网页中,因为 API 文档默认不这样做,我怀疑是否可行
我正在尝试为我的 Azure 移动服务制作一个干净漂亮的文档,尽管自动生成的帮助页面不包括 ///评论信息
我尝试从 Nu-get 导入帮助页面包,但是当我部署时它们似乎不起作用。
Google 搜索失败。 有没有 link Azure 移动服务自定义帮助页面教程? 或者 有人实现了在自动生成的帮助页面上显示 /// 评论吗?
创建 Azure 移动服务并将其部署到服务器或 运行 在本地主机中时,我们可以看到 API 文档如下
和
这是本文推导的
但是如果你对每个服务评论如下
// GET tables/Customer
/// <summary>
/// Gets all customer dto.
/// </summary>
/// <returns>IQueryable<CustomerDto>.</returns>
public IQueryable<CustomerDto> GetAllCustomerDto()
{
try
{
return Query();
}
catch (DbEntityValidationException entityValidationException)
{
Debug.WriteLine(entityValidationException.GetDetails());
throw;
}
}
这些评论未加载到 API 文档中。我在这里看到的唯一一件事是生成带有注释的 xml 文件(就像我们做的 to create APIs documentations like MSDN)并将其加载到生成 API 文档的网页中,因为 API 文档默认不这样做,我怀疑是否可行