共用方式為


Results.InternalServerError 方法

定義

多載

InternalServerError()

產生 Status500InternalServerError 回應。

InternalServerError<TValue>(TValue)

產生 Status500InternalServerError 回應。

InternalServerError()

產生 Status500InternalServerError 回應。

public static Microsoft.AspNetCore.Http.IResult InternalServerError ();
static member InternalServerError : unit -> Microsoft.AspNetCore.Http.IResult
Public Shared Function InternalServerError () As IResult

傳回

為回應建立的 IResult

適用於

InternalServerError<TValue>(TValue)

產生 Status500InternalServerError 回應。

public static Microsoft.AspNetCore.Http.IResult InternalServerError<TValue> (TValue? error);
static member InternalServerError : 'Value -> Microsoft.AspNetCore.Http.IResult
Public Shared Function InternalServerError(Of TValue) (error As TValue) As IResult

類型參數

TValue

參數

error
TValue

要包含在 HTTP 回應主體中的錯誤物件。

傳回

為回應建立的 IResult

適用於