大家好,我对微软的Azure移动服务有疑问。我想为Azure移动服务门户(url< fill name here> .azure-mobile.net上的那个)制作文档,让我的朋友知道在您提出请求时自定义API应该做什么。我搜索了它,但我没有找到任何东西,标准的C#样式文档没有显示任何内容。它必须能够记录它,因为在网站上它告诉我没有可用的文档或类型。
答案 0 :(得分:1)
在帮助页面上显示标准C#文档非常简单。
基本上就是这样:
/// <summary>
/// Creates a new user account.
/// </summary>
/// <param name="model">Object containing the basic information about the user.</param>
/// <returns>User with the basic data and the JWT token.</returns>
/// <exception cref="BusinessLogicException">
/// Throws business exception if the user that is being created contains invalid data, such as invalid email, username and so on.
/// </exception>
public async Task<ResponseMessage<UserLogin>> Post(PostUserModel model)
{
...
}
成为这个:
您需要做的只是:
如需更多帮助页面自定义选项,请关注此资源: http://www.codeproject.com/Articles/819848/Master-the-Managed-Azure-Mobile-Services-Backend
答案 1 :(得分:0)
尝试Azure API管理。它将为您的用户创建一个开发人员门户,其中包含文档,测试控制台等,以及提供分析,配额等的管理门户。您可以找到更多详细信息here。