我正在使用Microsoft ASP.Net Web API 2.2帮助页面版本5.2.3,并且正文参数的其他信息显示为“无”。我无法让它显示任何有用的信息。其他信息填写正确。
样本类:
/// <summary>
/// Class for doing something.
/// </summary>
public class MyClass
{
/// <summary>
/// This text here shows fine as the Description.
/// </summary>
[Required(ErrorMessage = "This is needed!")]
public int MyInt;
}
据我所知,附加信息应填充为“必需”或错误消息中的文本。我已经尝试过这个答案:https://stackoverflow.com/a/35920075/5910024无济于事。