タイプ Person の FromBody パラメータを受け取るポスト アクションがあります。HelpPage で、Person パラメータに関する情報を取得します。代わりに Person のプロパティに関する情報を一覧表示し、XML ドキュメント ファイルのドキュメントを使用して各プロパティの説明を取得することはできますか?
public class PersonController : ApiController
{
/// <summary>
/// Add a person
/// </summary>
/// <param name="person">Person to add</param>
/// <returns></returns>
[HttpPost]
public HttpResponseMessage Add([FromBody] Person person)
{
// ...
return Request.CreateResponse(HttpStatusCode.Created);
}
}
/// <summary>
/// A person
/// </summary>
public class Person
{
/// <summary>
/// The name of the person
/// </summary>
public String Name { get; set; }
/// <summary>
/// The age of the person
/// </summary>
public Int32 Age { get; set; }
}