8

タイプ 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; }
}
4

1 に答える 1

6

現在、これはそのままではサポートされていません。モデルで使用されるデータ注釈属性のヘルプ ページ生成を要求する関連作業項目があります。あなたのシナリオは修正後に動作するはずです: http://aspnetwebstack.codeplex.com/workitem/877

于 2013-03-28T14:25:50.683 に答える