在MVC c#

时间:2019-05-09 04:52:38

标签: asp.net-web-api2 swagger-2.0 documentation-generation

我正在使用swagger工具创建Web api。我想在swagger文档的定义中添加新模型。我返回的是产品类的模型,并且还想返回包含有关错误信息的错误对象。我创建了错误类,并希望添加定义。我怎样才能做到这一点 ??通过在方法顶部添加此行[ResponseType(typeof(Product))],该行将在 招摇文件。而且还想返回Error类Definition。因为成功显示“产品”类对象,如果显示错误,则显示“错误”类对象

Error: 
{
Type: Object ,
definitions: ,
properties : 
{
error code: 
 type: string 
definitions: "showing code" 

Message : 
type: string 
definitions : "Showing message"

}

0 个答案:

没有答案