Results.Problem Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
Problem(ProblemDetails) |
ProblemDetails Vytvoří odpověď. |
Problem(String, String, Nullable<Int32>, String, String, IDictionary<String,Object>) |
ProblemDetails Vytvoří odpověď. |
Problem(ProblemDetails)
- Zdroj:
- Results.cs
ProblemDetails Vytvoří odpověď.
public static Microsoft.AspNetCore.Http.IResult Problem (Microsoft.AspNetCore.Mvc.ProblemDetails problemDetails);
static member Problem : Microsoft.AspNetCore.Mvc.ProblemDetails -> Microsoft.AspNetCore.Http.IResult
Public Shared Function Problem (problemDetails As ProblemDetails) As IResult
Parametry
- problemDetails
- ProblemDetails
Objekt ProblemDetails , ze který chcete vytvořit odpověď.
Návraty
Vytvořený IResult pro odpověď.
Platí pro
Problem(String, String, Nullable<Int32>, String, String, IDictionary<String,Object>)
- Zdroj:
- Results.cs
ProblemDetails Vytvoří odpověď.
public static Microsoft.AspNetCore.Http.IResult Problem (string? detail = default, string? instance = default, int? statusCode = default, string? title = default, string? type = default, System.Collections.Generic.IDictionary<string,object?>? extensions = default);
static member Problem : string * string * Nullable<int> * string * string * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.AspNetCore.Http.IResult
Public Shared Function Problem (Optional detail As String = Nothing, Optional instance As String = Nothing, Optional statusCode As Nullable(Of Integer) = Nothing, Optional title As String = Nothing, Optional type As String = Nothing, Optional extensions As IDictionary(Of String, Object) = Nothing) As IResult
Parametry
- extensions
- IDictionary<String,Object>
Hodnota pro Extensions.
Návraty
Vytvořený IResult pro odpověď.