DefaultStatusCodeAttribute 类

定义

指定与 关联的 ActionResult默认状态代码。

public ref class DefaultStatusCodeAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false, Inherited=true)]
public sealed class DefaultStatusCodeAttribute : Attribute
[System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Method, AllowMultiple=false, Inherited=true)]
public sealed class DefaultStatusCodeAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false, Inherited=true)>]
type DefaultStatusCodeAttribute = class
    inherit Attribute
[<System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Method, AllowMultiple=false, Inherited=true)>]
type DefaultStatusCodeAttribute = class
    inherit Attribute
Public NotInheritable Class DefaultStatusCodeAttribute
Inherits Attribute
继承
DefaultStatusCodeAttribute
属性

注解

此属性仅供信息使用,没有任何运行时影响。 对类应用 特性指示 ActionResult 该类表示的 默认使用特定状态代码。 将 属性应用于方法指示 ActionResult 方法返回的 默认使用该状态代码。 在需要指定方法修改 在逻辑中默认使用的状态代码 ActionResult 或指定用于在 API 分析器中使用的状态代码的情况下,后面的 非常有用。

构造函数

DefaultStatusCodeAttribute(Int32)

初始化 DefaultStatusCodeAttribute 的新实例。

属性

StatusCode

获取默认状态代码。

适用于