Share via


Results.ValidationProblem Method

Definition

Overloads

ValidationProblem(IDictionary<String,String[]>, String, String, Nullable<Int32>, String, String, IDictionary<String,Object>)

Produces a Status400BadRequest response with a HttpValidationProblemDetails value.

ValidationProblem(IEnumerable<KeyValuePair<String,String[]>>, String, String, Nullable<Int32>, String, String, IEnumerable<KeyValuePair<String, Object>>)

Produces a Status400BadRequest response with a HttpValidationProblemDetails value.

ValidationProblem(IDictionary<String,String[]>, String, String, Nullable<Int32>, String, String, IDictionary<String,Object>)

Source:
Results.cs

Produces a Status400BadRequest response with a HttpValidationProblemDetails value.

public static Microsoft.AspNetCore.Http.IResult ValidationProblem (System.Collections.Generic.IDictionary<string,string[]> errors, 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 ValidationProblem (System.Collections.Generic.IDictionary<string,string[]> errors, string? detail, string? instance, int? statusCode, string? title, string? type, System.Collections.Generic.IDictionary<string,object?>? extensions);
static member ValidationProblem : System.Collections.Generic.IDictionary<string, string[]> * string * string * Nullable<int> * string * string * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.AspNetCore.Http.IResult
Public Shared Function ValidationProblem (errors As IDictionary(Of String, String()), 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 ValidationProblem (errors As IDictionary(Of String, String()), 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

Parameters

errors
IDictionary<String,String[]>

One or more validation errors.

detail
String

The value for Detail.

instance
String

The value for Instance.

statusCode
Nullable<Int32>

The status code.

title
String

The value for Title. Defaults to "One or more validation errors occurred."

type
String

The value for Type.

extensions
IDictionary<String,Object>

The value for Extensions.

Returns

The created IResult for the response.

Applies to

ValidationProblem(IEnumerable<KeyValuePair<String,String[]>>, String, String, Nullable<Int32>, String, String, IEnumerable<KeyValuePair<String, Object>>)

Produces a Status400BadRequest response with a HttpValidationProblemDetails value.

public static Microsoft.AspNetCore.Http.IResult ValidationProblem (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string[]>> errors, 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 ValidationProblem : seq<System.Collections.Generic.KeyValuePair<string, string[]>> * string * string * Nullable<int> * string * string * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> Microsoft.AspNetCore.Http.IResult
Public Shared Function ValidationProblem (errors As IEnumerable(Of KeyValuePair(Of String, String())), 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

Parameters

errors
IEnumerable<KeyValuePair<String,String[]>>

One or more validation errors.

detail
String

The value for Detail.

instance
String

The value for Instance.

statusCode
Nullable<Int32>

The status code.

title
String

The value for Title. Defaults to "One or more validation errors occurred."

type
String

The value for Type.

extensions
IEnumerable<KeyValuePair<String,Object>>

The value for Extensions.

Returns

The created IResult for the response.

Applies to