Web API プロジェクトで自動生成ドキュメントを使用しようとしています。私はで装飾された ApplicationController を持っています..
/// <param name="application">
これは Application 型で、パブリック プロパティがあります。
[DataContract]
public class Application : ICanBeAuthenticated
{
/// <summary>
/// Email (string): Required. Email address of the applicant. Must be a valid email address.
/// </summary>
[DataMember(IsRequired = true)]
public string Email { get; set; }
...
}
電子メールの概要タグを取得できますが、プロパティ名「電子メール」にアクセスして、その説明から分離したいのですが、アイデアはありますか?
理想的には、次のようなものを持てるようにしたい..
/// <name>
/// Email (string)
/// </name>
/// <description>
/// Required. Email address of the applicant. Must be a valid email address.
/// </description>
[DataMember(IsRequired = true)]
public string Email { get; set; }