Sdílet prostřednictvím


Results.Problem Metoda

Definice

Přetížení

Problem(ProblemDetails)

Vytvoří odpověď ProblemDetails.

Problem(String, String, Nullable<Int32>, String, String, IDictionary<String,Object>)

Vytvoří odpověď ProblemDetails.

Problem(String, String, Nullable<Int32>, String, String, IEnumerable<KeyValuePair<String,Object>>)

Vytvoří odpověď ProblemDetails.

Problem(ProblemDetails)

Zdroj:
Results.cs

Vytvoří odpověď ProblemDetails.

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 k vytvoření odpovědi.

Návraty

Vytvořená IResult pro odpověď.

Platí pro

Problem(String, String, Nullable<Int32>, String, String, IDictionary<String,Object>)

Zdroj:
Results.cs

Vytvoří odpověď ProblemDetails.

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);
public static Microsoft.AspNetCore.Http.IResult Problem (string? detail, string? instance, int? statusCode, string? title, string? type, System.Collections.Generic.IDictionary<string,object?>? extensions);
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
Public Shared Function Problem (detail As String, instance As String, statusCode As Nullable(Of Integer), title As String, type As String, extensions As IDictionary(Of String, Object)) As IResult

Parametry

detail
String

Hodnota pro Detail.

instance
String

Hodnota pro Instance.

statusCode
Nullable<Int32>

Hodnota pro Status.

title
String

Hodnota pro Title.

type
String

Hodnota pro Type.

extensions
IDictionary<String,Object>

Hodnota pro Extensions.

Návraty

Vytvořená IResult pro odpověď.

Platí pro

Problem(String, String, Nullable<Int32>, String, String, IEnumerable<KeyValuePair<String,Object>>)

Vytvoří odpověď ProblemDetails.

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.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>>? extensions = default);
static member Problem : string * string * Nullable<int> * string * string * seq<System.Collections.Generic.KeyValuePair<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 IEnumerable(Of KeyValuePair(Of String, Object)) = Nothing) As IResult

Parametry

detail
String

Hodnota pro Detail.

instance
String

Hodnota pro Instance.

statusCode
Nullable<Int32>

Hodnota pro Status.

title
String

Hodnota pro Title.

type
String

Hodnota pro Type.

extensions
IEnumerable<KeyValuePair<String,Object>>

Hodnota pro Extensions.

Návraty

Vytvořená IResult pro odpověď.

Platí pro