Results.InternalServerError 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
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。