ProducesResponseTypeAttribute<T> 构造函数

定义

重载

ProducesResponseTypeAttribute<T>(Int32)

初始化 ProducesResponseTypeAttribute 的实例。

ProducesResponseTypeAttribute<T>(Int32, String, String[])

初始化 ProducesResponseTypeAttribute 的实例。

ProducesResponseTypeAttribute<T>(Int32)

Source:
ProducesResponseTypeOfTAttribute.cs

初始化 ProducesResponseTypeAttribute 的实例。

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

参数

statusCode
Int32

HTTP 响应状态代码。

适用于

ProducesResponseTypeAttribute<T>(Int32, String, String[])

Source:
ProducesResponseTypeOfTAttribute.cs

初始化 ProducesResponseTypeAttribute 的实例。

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

参数

statusCode
Int32

HTTP 响应状态代码。

contentType
String

与响应关联的内容类型。

additionalContentTypes
String[]

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

适用于