ActionResultStatusCodeAttribute 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
ActionResult 建構函式和協助程式方法參數上標注的屬性,表示參數是用來設定 ActionResult 的 「statusCode」。
分析器會依類型名稱比對此參數。 這可讓使用者標注具有使用者定義屬性的自訂結果 \ 自訂協助程式,而不需要公開此類型。
此屬性刻意標示為 Inherited=false,因為分析器不會引導繼承圖表。
public ref class ActionResultStatusCodeAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Parameter, AllowMultiple=false, Inherited=false)]
public sealed class ActionResultStatusCodeAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Parameter, AllowMultiple=false, Inherited=false)>]
type ActionResultStatusCodeAttribute = class
inherit Attribute
Public NotInheritable Class ActionResultStatusCodeAttribute
Inherits Attribute
- 繼承
-
ActionResultStatusCodeAttribute
- 屬性
範例
批註建構函式參數:
public StatusCodeResult([ActionResultStatusCode] int statusCode)
{
StatusCode = statusCode;
}
建構函式
ActionResultStatusCodeAttribute() |
ActionResult 建構函式和協助程式方法參數上標注的屬性,表示參數是用來設定 ActionResult 的 「statusCode」。 分析器會依類型名稱比對此參數。 這可讓使用者標注具有使用者定義屬性的自訂結果 \ 自訂協助程式,而不需要公開此類型。 此屬性刻意標示為 Inherited=false,因為分析器不會引導繼承圖表。 |