StatusCodeResult 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示 ActionResult 執行 時,當執行 時,會產生具有指定回應狀態碼的 HTTP 回應。
public ref class StatusCodeResult : Microsoft::AspNetCore::Mvc::ActionResult
public ref class StatusCodeResult : Microsoft::AspNetCore::Mvc::ActionResult, Microsoft::AspNetCore::Mvc::IActionResult, Microsoft::AspNetCore::Mvc::Infrastructure::IClientErrorActionResult
public class StatusCodeResult : Microsoft.AspNetCore.Mvc.ActionResult
public class StatusCodeResult : Microsoft.AspNetCore.Mvc.ActionResult, Microsoft.AspNetCore.Mvc.IActionResult, Microsoft.AspNetCore.Mvc.Infrastructure.IClientErrorActionResult
type StatusCodeResult = class
inherit ActionResult
type StatusCodeResult = class
inherit ActionResult
interface IClientErrorActionResult
interface IStatusCodeActionResult
interface IActionResult
type StatusCodeResult = class
inherit ActionResult
interface IActionResult
interface IClientErrorActionResult
interface IStatusCodeActionResult
Public Class StatusCodeResult
Inherits ActionResult
Public Class StatusCodeResult
Inherits ActionResult
Implements IActionResult, IClientErrorActionResult
- 繼承
- 衍生
- 實作
建構函式
StatusCodeResult(Int32) |
使用指定的 StatusCodeResult,初始化 |
屬性
StatusCode |
取得 HTTP 狀態碼。 |
方法
ExecuteResult(ActionContext) |
同步執行動作方法的結果作業。 MVC 會呼叫這個方法來處理動作方法的結果。 |
ExecuteResultAsync(ActionContext) |
以非同步方式執行動作方法的結果作業。 MVC 會呼叫這個方法來處理動作方法的結果。 這個方法的預設實作會呼叫 ExecuteResult(ActionContext) 方法,並傳回已完成的工作。 (繼承來源 ActionResult) |
明確介面實作
IStatusCodeActionResult.StatusCode |
表示 ActionResult 執行 時,當執行 時,會產生具有指定回應狀態碼的 HTTP 回應。 |