ProducesResponseTypeAttribute 构造函数

定义

重载

ProducesResponseTypeAttribute(Int32)

初始化 ProducesResponseTypeAttribute 的实例。

ProducesResponseTypeAttribute(Type, Int32)

初始化 ProducesResponseTypeAttribute 的实例。

ProducesResponseTypeAttribute(Type, Int32, String, String[])

初始化 ProducesResponseTypeAttribute 的实例。

ProducesResponseTypeAttribute(Int32)

初始化 ProducesResponseTypeAttribute 的实例。

public:
 ProducesResponseTypeAttribute(int statusCode);
public ProducesResponseTypeAttribute (int statusCode);
new Microsoft.AspNetCore.Mvc.ProducesResponseTypeAttribute : int -> Microsoft.AspNetCore.Mvc.ProducesResponseTypeAttribute
Public Sub New (statusCode As Integer)

参数

statusCode
Int32

HTTP 响应状态代码。

适用于

ProducesResponseTypeAttribute(Type, Int32)

初始化 ProducesResponseTypeAttribute 的实例。

public:
 ProducesResponseTypeAttribute(Type ^ type, int statusCode);
public ProducesResponseTypeAttribute (Type type, int statusCode);
new Microsoft.AspNetCore.Mvc.ProducesResponseTypeAttribute : Type * int -> Microsoft.AspNetCore.Mvc.ProducesResponseTypeAttribute
Public Sub New (type As Type, statusCode As Integer)

参数

type
Type

Type将在响应中写入的 对象的 。

statusCode
Int32

HTTP 响应状态代码。

适用于

ProducesResponseTypeAttribute(Type, Int32, String, String[])

初始化 ProducesResponseTypeAttribute 的实例。

public ProducesResponseTypeAttribute (Type type, int statusCode, string contentType, params string[] additionalContentTypes);
new Microsoft.AspNetCore.Mvc.ProducesResponseTypeAttribute : Type * int * string * string[] -> Microsoft.AspNetCore.Mvc.ProducesResponseTypeAttribute
Public Sub New (type As Type, statusCode As Integer, contentType As String, ParamArray additionalContentTypes As String())

参数

type
Type

Type将在响应中写入的 对象的 。

statusCode
Int32

HTTP 响应状态代码。

contentType
String

与响应关联的内容类型。

additionalContentTypes
String[]

响应支持的其他内容类型。

适用于